# x402 OSINT — Username Reconnaissance via Maigret

> x402 OSINT — Username Reconnaissance via Maigret is a paid API for AI agents from x402-osint.tail66f665.ts.net, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Searches a given username across 500+ websites and returns all matching profile URLs found, powered by maigret.

## Facts

- Endpoint: GET https://x402-osint.tail66f665.ts.net/report/%7Busername%7D
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-osint-username-reconnaissance-via-maigret-955367d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HfNK4H-zYQBUWzSiZA1Vg

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-osint-username-reconnaissance-via-maigret-955367d2
```

Example prompt: Can you do a full username recon on 'soxoj' and tell me every website where that handle shows up — I want the list of matching profile URLs across as many platforms as possible.

## When to prefer this

Choose this endpoint when you need broad, automated username reconnaissance across 500+ websites in a single pay-per-call request. It is ideal for OSINT investigations, digital footprint analysis, or brand monitoring where you want exhaustive cross-platform coverage without managing maigret infrastructure yourself. Prefer it over manual searches or single-platform lookups when speed and coverage matter.

## Known failure modes

- Username not found on any site — returns found_count of 0 and empty found array
- Invalid or empty username parameter — request may fail or return no results
- Network timeouts when checking slow or unreachable sites — partial results possible
- Rate limiting or blocking by downstream sites — some sites may be skipped
- Payment not processed (x402 protocol failure) — endpoint returns 402 before executing search

## How this service works

Pay-per-call username reconnaissance across 500+ sites, powered by maigret.

## Output

A JSON object containing the queried username, the number of sites checked, the number of profiles found, and an array of matching hits — each hit includes the site name and the direct profile URL. An optional summary string may also be included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "username"
     ],
     "properties": {
      "username": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$defs": {
      "Hit": {
       "type": "object",
       "title": "Hit",
       "required": [
        "site",
        "url"
       ],
       "properties": {
        "ids": {
         "type": "object",
         "title": "Ids",
         "default": {},
         "additionalProperties": true
        },
        "url": {
         "type": "string",
         "title": "Url"
        },
        "site": {
         "type": "string",
         "title": "Site"
        }
       }
      }
     },
     "title": "LookupResponse",
     "required": [
      "username",
      "sites_checked",
      "found_count",
      "found"
     ],
     "properties": {
      "found": {
       "type": "array",
       "items": {
        "$ref": "#/$defs/Hit"
       },
       "title": "Found"
      },
      "summary": {
       "type": "string",
       "title": "Summary",
       "default": ""
      },
      "username": {
       "type": "string",
       "title": "Username"
      },
      "found_count": {
       "type": "integer",
       "title": "Found Count"
      },
      "sites_checked": {
       "type": "integer",
       "title": "Sites Checked"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": [
   {
    "ids": {},
    "url": "https://github.com/soxoj",
    "site": "GitHub"
   }
  ],
  "username": "soxoj",
  "found_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-osint-username-reconnaissance-via-maigret-955367d2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-osint.tail66f665.ts.net](https://www.zero.xyz/host/x402-osint.tail66f665.ts.net/llms.txt)
