Jon RezinAPI Docs

Jon Rezin Public API

Public, agent-friendly read access to Jon's bio, services, discography, artists, and structured page summaries — plus an inquiry intake form. Spec: /openapi.json (OpenAPI 3.1).

AI assistants: this site advertises a Model Context Protocol server at /.well-known/mcp.json. Two read-only tools are available over JSON-RPC 2.0 at /api/v1/mcp: getCredits(artist) and searchReleases(query).

Bio

Structured bio, services, awards, and current availability.

curl https://jonrezin.com/api/v1/jon.json

Discography

Filter by artist or role; paginate via limit + offset.

curl 'https://jonrezin.com/api/v1/discography?artist=Bad%20Bunny&limit=10'

Page summary (lang-aware)

Schema.org WebPage for any known URL; ?lang=<code> returns translated title/description.

curl 'https://jonrezin.com/api/v1/page.json?url=/about&lang=de'

JSON sitemap

Every public URL with language + type. Cached for 1 hour.

curl https://jonrezin.com/api/v1/sitemap.json

MCP — list tools

JSON-RPC 2.0 over HTTP. No auth.

curl -X POST https://jonrezin.com/api/v1/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

MCP — getCredits

Returns Jon's credits for the given artist.

curl -X POST https://jonrezin.com/api/v1/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call",
       "params":{"name":"getCredits","arguments":{"artist":"Bad Bunny"}}}'

Rate limit: 60 req/hr per IP. Identify as an agent via User-Agent: YourBot/1.0 (on-behalf-of: [email protected]) for 300 req/hr. Full agent policy: /ai.txt.