API

Findifier Search API

LLM-friendly JSON search results from Findifier metasearch.

Quick start

curl -H "Accept: application/json" "http://findifier.com/api/v1/search?q=moshiach&page=1"

Endpoints

GET /api/v1/search

Search the web and receive structured JSON results.

  • q (required) — Search query (max 512 chars)
  • page — Page number (default: 1)

http://findifier.com/api/v1/search?q=moshiach&page=1

GET /api

This API documentation (JSON when Accept: application/json).

Response schema

{"query":"string — the search query","page":"integer — current page number","engine":"string — search engine brand name","summary":"string — human-readable result count","results":[{"rank":"integer — 1-based rank across pages","title":"string — result title","url":"string — canonical result URL","domain":"string — hostname without www","description":"string — snippet text (HTML stripped)"}],"pagination":{"page":"integer","total_pages":"integer","total_results":"integer","has_more":"boolean","next_url":"string|null — URL for next page of results"},"meta":{"generated_at":"ISO-8601 timestamp","api_docs":"string — path to this documentation","format":"application/json","version":"v1"}}

← Back to search · JSON docs