> For the complete documentation index, see [llms.txt](https://docs.ismalicious.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ismalicious.com/technical-docs/api-reference/submit-source.md).

# Submit source

{% hint style="info" %}
We need you for a safer world 🌍
{% endhint %}

### Request

<mark style="color:yellow;">**POST**</mark> `https://ismalicious.com/api/submit`

{% tabs %}
{% tab title="Request" %}
Query Parameters

<table><thead><tr><th width="137">Field</th><th width="80">Type</th><th width="488">Description</th></tr></thead><tbody><tr><td><code>sources</code></td><td>array</td><td>An array of sources to be submitted. Each source includes:</td></tr><tr><td><code>name</code></td><td>string</td><td>The name of the source.</td></tr><tr><td><code>type</code></td><td>string</td><td>The type of the source (e.g., ip, domain).</td></tr><tr><td><code>url</code></td><td>string</td><td>The URL of the source.</td></tr><tr><td><code>category</code></td><td>string</td><td>(Optional) The category of the source (e.g., spam, malware).</td></tr></tbody></table>
{% endtab %}
{% endtabs %}

### Example

```json
Content-Type: application/json

{
  "sources": [
    {
      "category": "spam",
      "name": "Fortinet Firewall AA",
      "type": "ip",
      "url": "https://raw.githubusercontent.com/duggytuxy/malicious_ip_addresses/main/blacklist_ips_for_fortinet_firewall_aa.txt"
    }
  ]
}
```

### Description

The feature enables users to submit new sources of threat intelligence to the existing sources API database. These submissions will undergo a moderation and validation process before being fully integrated into the system. This ensures that only credible and useful sources are added, enhancing the quality and reliability of the threat intelligence provided.

#### Why is this useful?

* **Crowdsourced Intelligence**: Leverages the knowledge of the community to improve threat detection capabilities.
* **Enhanced Coverage**: Expands the breadth of monitored sources, leading to more comprehensive threat intelligence.
* **Quality Control**: Ensures that only validated and reliable sources are included, maintaining the integrity of the data.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.ismalicious.com/technical-docs/api-reference/submit-source.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
