Catalog/osint-profile-urls

OSINT

Profile URL generator API

Generate social/profile URL candidates for a username across supported OSINT sources without checking availability.

Price$0.01per request
MethodGET
Route/v1/osint/profile-urls
StatusLive
MIME typeapplication/json
Rate limit240/minute
Cache3600s public
osintusernameprofilestemplates
API URLhttps://x402.hexl.dev/v1/osint/profile-urls
Integration docs
Example request
{
  "username": "octocat",
  "platforms": "github,reddit"
}
Example response
{
  "username": "octocat",
  "profiles": [
    {
      "platform": "github",
      "url": "https://github.com/octocat"
    }
  ],
  "provider": "profile-url-generator"
}
Input schema
{
  "type": "object",
  "required": [
    "username"
  ],
  "properties": {
    "username": {
      "type": "string",
      "minLength": 1
    },
    "platforms": {
      "type": "string",
      "examples": [
        "github,reddit"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}