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

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

The question should be specific, self-contained, and written in natural language.
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.
