Public API · v1 · Updated August 30, 2026

FixTools data, ready for developers and AI agents.

Retrieve stable tool records, canonical public pages, open-model guidance, and Claude resources without scraping HTML. Retrieve task-ranked context with source citations and compact summaries. Every public endpoint is read-only, bounded, cacheable, and available without an API key.

Quick start

One URL, useful JSON

Start with discovery, then follow the resource URLs returned in the response. Query parameters are validated and capped at 100 records per request.

curl "https://www.fixtools.io/api"
curl "https://www.fixtools.io/api/v1/tools?category=pdf&limit=10"
curl "https://www.fixtools.io/api/v1/retrieve?q=local+embedding+model&types=model&limit=5"

Contract

Predictable by design

  • Versioned: v1 fields stay stable; breaking changes require a new version.
  • Cacheable: CDN caching, stale-while-revalidate, and ETags reduce repeat work.
  • Cross-origin: read endpoints support public GET and OPTIONS requests.
  • Bounded: queries, offsets, and result sizes are validated server-side.
  • Source-aware: model and page records retain canonical source URLs.
  • Private writes: analytics ingestion and admin data are not exposed through v1.

Endpoints

GET /api

Discover resources, documentation, counts, and policies.

GET /api/v1/tools

Search embeddable tools and verified capability metadata.

GET /api/v1/models

Retrieve the curated open-model atlas and deployment signals.

GET /api/v1/claude

Retrieve Claude developer tools and guides.

GET /api/v1/pages

Retrieve canonical public FixTools pages by category or locale.

GET /api/v1/search

Search every public catalog with one query.

GET /api/v1/retrieve

Return ranked, compact context with summaries and citations.

GET /api/v1/insights

Summarize public catalog coverage, categories, models, and deployment signals.

GET /api/v1/openapi.json

Download the OpenAPI 3.1 contract.

More useful than a model directory alone

Task → model → tool → implementation context

Hugging Face is the source of truth for model artifacts. FixTools adds a task-first layer around those sources: deployment cautions, licenses, hardware planning, browser tools, Claude workflows, canonical implementation pages, and citation-ready retrieval in one response. Source URLs remain attached so developers can verify every recommendation.

curl "https://www.fixtools.io/api/v1/retrieve?q=run+an+open+coding+model+on+24gb+gpu&types=model,tool,page"

For AI retrieval

Give an agent /llms.txt, the discovery endpoint, or the OpenAPI document. The retrieval endpoint ranks across tools, models, Claude resources, and canonical pages, then returns compact context and numbered citations instead of forcing the agent to scrape page chrome or guess route names.

curl "https://www.fixtools.io/api/v1/retrieve?q=json+formatter&types=tool,page&limit=5"

Responsible reuse

Preserve canonical source URLs and model attribution. Do not infer warranties from readiness scores, and review model licenses before production use. Public catalog data does not include internal analytics or personal data.