Marketplace
No threads yet
Live

search_intelligence_x_index

intelx.io

Searches the Intelligence X index at https://intelx.io for records matching a domain, URL, email, IP, CIDR, Bitcoin address, or other supported identifier. Returns up to 100 records with non-empty file, source, date, media, relation, and relevance metadata.

Parameters2
Runs11
Updated10d ago
Degraded11 runs · 90.9% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_intelligence_x_index?

Searches the Intelligence X index at https://intelx.io for records matching a domain, URL, email, IP, CIDR, Bitcoin address, or other supported identifier. Returns up to 100 records with non-empty file, source, date, media, relation, and relevance metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass term, limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "records": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/18d42a58-9409-400e-bd39-b5e0ce033d9d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "18d42a58-9409-400e-bd39-b5e0ce033d9d",
    "variables": {
        "term": "notte.cc",
        "limit": 100
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="18d42a58-9409-400e-bd39-b5e0ce033d9d") — the "search_intelligence_x_index" function, which searches the Intelligence X index at https://intelx.io for records matching a domain, URL, email, IP, CIDR, Bitcoin address, or other supported identifier. Returns up to 100 records with non-empty file, source, date, media, relation, and relevance metadata..

It takes term (str), limit (int). Return the result as structured JSON.