# Intelx — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search across indexed content from the public web, darknet, data leaks, and pastes using domains, URLs, emails, IPs, and other identifiers to find relevant information. Retrieve specific files from the Intelligence X database to investigate security threats, monitor for data breaches, or conduct threat intelligence research.

**Category:** Other | **Website:** [intelx.io/](https://intelx.io/) | **Docs:** [parse.bot/marketplace/d6cc4240-d2ea-449c-9f26-1f6a7b288c04/intelx-io-api](https://parse.bot/marketplace/d6cc4240-d2ea-449c-9f26-1f6a7b288c04/intelx-io-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-intelx-io-api-d6cc4240/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search

Search the Intelligence X index for records matching a term (domain, URL, email, IP, CIDR, Bitcoin address, etc.). Internally initiates an async search and polls for results. Returns metadata about matching files and documents including name, date, media type, source bucket, and relevance score. Each call makes two sequential upstream requests (initiate + fetch), so latency is ~3 seconds. Results are capped at 100 per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date_from` | string | No | Filter results to items dated on or after this date. ISO 8601 format YYYY-MM-DD (e.g. 2023-01-01). |
| `date_to` | string | No | Filter results to items dated on or before this date. ISO 8601 format YYYY-MM-DD (e.g. 2024-12-31). |
| `max_results` | integer | No | Maximum number of results to return (1-100). |
| `media` | string | No | Filter results by media/file type. Omitted or empty returns all types. |
| `sort` | string | No | Sort order for results. |
| `term` | string | Yes | Search selector: a domain, URL, email address, IP address, CIDR range, Bitcoin address, or free-text keyword. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-intelx-io-api-d6cc4240/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date_from":"<string>","date_to":"<string>","max_results":"<integer>","media":"<string>","sort":"<string>","term":"<string>"}'
```
