AGENT ARDVARK Case files / Learn

A complete ai-catalog.json example, explained

Last reviewed 2026-07-06 · Agent Ardvark field notes

Below is a complete, valid ai-catalog.json under version 1.0 of the ARD specification. Copy it, replace the example values with your own, and host it at /.well-known/ai-catalog.json. Or skip the hand-editing and use our free generator, which produces a spec-valid file from a plain-English form.

{
  "specVersion": "1.0",
  "host": { "displayName": "Example Studio" },
  "entries": [
    {
      "identifier": "urn:air:example.com:api:bookings",
      "displayName": "Booking API",
      "type": "application/openapi+json",
      "url": "https://example.com/openapi.json",
      "description": "Check availability and book appointments.",
      "representativeQueries": [
        "book a session at Example Studio",
        "what slots are free on Friday"
      ]
    }
  ]
}

Field by field

specVersion — must be exactly the string "1.0". Anything else fails validation.

host — optional but recommended. Names the publisher. displayName is required if the block is present; you can also add documentationUrl and logoUrl.

entries — the list of things you are advertising. Each entry:

The three mistakes that fail validation most

First, a malformed identifier (missing the urn:air: prefix or using illegal characters). Second, including both url and data in one entry. Third, a specVersion that is not exactly "1.0". Our checker catches all three and tells you what to fix.

Frequently asked questions

Can I have more than one entry?

Yes, as many as you like. Each needs its own unique identifier. An empty entries array is technically valid but advertises nothing.

What media type do I use for a plain website?

The spec is designed around machine-usable resources (APIs, MCP servers, agents). For plain content sites, listing an API or feed is most useful; check the spec for evolving guidance.

Check your site now →
Free, ten seconds, no signup. Agent Ardvark inspects your domain against the official ARD specification and writes your ai-catalog.json if you need one.