Public API quickstart
Fetch a Show and read its response with curl or JavaScript.
Make an anonymous request
Section titled “Make an anonymous request”curl --fail-with-body https://api.mediux.io/shows/1399No account, API key, or token is needed. The response’s data property contains
the Show. Open the Show reference for a full
example.
Use JavaScript
Section titled “Use JavaScript”const response = await fetch("https://api.mediux.io/shows/1399", { credentials: "omit",});
if (!response.ok) { throw new Error(`Mediux request failed: ${response.status}`);}
const { data } = await response.json();console.log(data);Public requests work in browsers. Use GET or HEAD, omit credentials, and
send no query parameters.
Find more artwork
Section titled “Find more artwork”Browse the endpoint reference for Entities, Sets, Boxsets,
Loadouts, feeds, and YAML exports. For paginated responses, request the path
in meta.nextPage until it is null.
Read responses and pagination for error handling and caching, or use the TypeScript SDK.