Updated daily from provider APIs

The canonical database for AI models

One API to track every model version, alias, and deprecation across every provider. Stop reading changelog pages — query a single source of truth.

bash
$ curl https://api.modelgraph.ai/api/v1/resolve\
?q=claude-3-5-sonnet-20241022
{
  "matched_model": {
    "slug": "claude-3-5-sonnet-20241022",
    "display_name": "Claude 3.5 Sonnet (Oct 2024)",
    "status": "deprecated"
  },
  "is_latest": false,
  "upgrade": {
    "slug": "claude-sonnet-4-6",
    "display_name": "Claude Sonnet 4.6",
    "status": "latest"
  },
  "upgrade_alias": "claude-sonnet-4-6"
}

What it tracks

A comprehensive registry covering every dimension of the AI model ecosystem.

Providers

Anthropic, OpenAI, Google, Meta, Mistral, Cohere, xAI, and more. Every major AI provider indexed.

Model Families

Groups of related models — Claude Sonnet, GPT-4o, Llama 3, Gemini Pro — with full evolution history.

Versions

Individual releases with release dates, deprecation dates, and sunset dates. Full lifecycle metadata.

Aliases

Every known string identifier across SDKs — official, Bedrock, Vertex, LiteLLM, LangChain, Azure, and more.

Lifecycle

Active, latest, deprecated, sunset. Track every status transition with precise dates and upgrade paths.

Parameters & Context

Parameter counts, context windows, input/output token limits. Compare capabilities across models.

How it works

Three stages, fully automated. Fresh data every day, no effort on your part.

1

We ingest

Automated pipelines poll provider APIs, scrape deprecation feeds, and sync Hugging Face daily.

2

We normalize

Raw data is cleaned, deduplicated, and mapped to a canonical schema with aliases for every platform.

3

You query

Simple REST API returns structured JSON — models, aliases, upgrades, lifecycle status, and more.

API preview

Real endpoints, real responses. The resolve endpoint is the heart of Model Graph — give it any model string, get back the canonical model and its upgrade.

GET /api/v1/resolve
GET Request
$ curl "https://api.modelgraph.ai/api/v1/resolve?q=gpt-4o-2024-08-06"
200 Response
{
  "matched_model": {
    "slug": "gpt-4o-2024-08-06",
    "display_name": "GPT-4o (Aug 2024)",
    "status": "deprecated"
  },
  "matched_alias": {
    "alias": "gpt-4o-2024-08-06",
    "source": "official"
  },
  "confidence": 1.0,
  "is_latest": false,
  "upgrade": {
    "slug": "gpt-4o-2025-06-03",
    "display_name": "GPT-4o (Jun 2025)",
    "status": "latest"
  },
  "upgrade_alias": "gpt-4o-2025-06-03"
}
GET /providers

List all tracked AI model providers with summary stats, model counts, and API URLs.

GET /models

Search and filter the full model registry. Filter by provider, family, status, or parameter range.

GET /families/{slug}

Get a model family with its full timeline — every version ordered by release date.

GET /models/{slug}/upgrade

Get the recommended upgrade path for any model. Follow successor chains or find the latest in the family.

GET /search

Full-text search across model names, slugs, aliases, and family names with ranked results.

GET /models/{slug}/history

List all models in the same family ordered chronologically. See the full lineage of any model.

Supported providers

Every major AI model provider, indexed and kept current. New providers added as the ecosystem evolves.

A
Anthropic
O
OpenAI
G
Google
M
Meta
M
Mistral
C
Cohere
X
xAI
H
Hugging Face
Open Source

Built in the open

Model Graph is open source. Contribute model data, report issues, suggest new providers, or build integrations on top of the registry.