Catalog/osint-dork-builder

OSINT

Search-dork builder API

Assemble a curated set of ready-to-paste advanced search queries (Google, Bing, GitHub dorks) for a target (domain/name/email) and an intent (files, logins, exposed, social) — pure compute, no upstream. The value-add is the curated, correct dork templates with exact operator syntax recon analysts use, classified target, and prebuilt search URLs. Answers 'OSINT dorks for this domain', 'Google dork to find exposed files', 'GitHub search for leaked secrets', 'find login pages for X'.

Price$0.01per request
MethodPOST
Route/v1/osint/dork-builder
StatusLive
MIME typeapplication/json
Rate limit60/minute
CacheNo cache
osintdorkgoogle-dorksearchreconfootprintinggithubbing
API URLhttps://x402.hexl.dev/v1/osint/dork-builder
Integration docs
Example request
{
  "target": "example.com",
  "intent": "files"
}
Example response
{
  "target": "example.com",
  "targetKind": "domain",
  "intent": "files",
  "count": 4,
  "dorks": [
    {
      "intent": "files",
      "engine": "google",
      "label": "Indexed documents",
      "query": "site:example.com (ext:pdf OR ext:doc OR ext:docx OR ext:xls OR ext:xlsx OR ext:ppt)",
      "url": "https://www.google.com/search?q=site%3Aexample.com%20(ext%3Apdf%20OR%20ext%3Adoc%20OR%20ext%3Adocx%20OR%20ext%3Axls%20OR%20ext%3Axlsx%20OR%20ext%3Appt)"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "target"
  ],
  "properties": {
    "target": {
      "type": "string",
      "examples": [
        "example.com"
      ]
    },
    "intent": {
      "type": "string",
      "enum": [
        "files",
        "logins",
        "exposed",
        "social",
        "all"
      ],
      "default": "all",
      "examples": [
        "files"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}