Models
Get a model
Look up a single model's detail by slug (see List available models — the response shape is exactly one entry from that endpoint's data[] array, just not wrapped in the list envelope). Works for any public model when Authorization is omitted; with a Bearer key belonging to an organization, a model outside that org's model allowlist answers 404 (not 403) so the response doesn't leak whether the model exists at all.
GET
/api/v1/models/:slugPath parameters
slugrequiredstring
The model's URL slug — the canonical id with "/" replaced by "-" (e.g. openai/gpt-4o → openai-gpt-4o). Same format used by the model detail page (bazaarlink.ai/models/:slug), so a URL copied from that page works directly here.
canonical model id with "/" replaced by "-"
Example:
"openai-gpt-4o"Response examples