# 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.
