Skip to content

Public API quickstart

Fetch a Show and read its response with curl or JavaScript.

Terminal window
curl --fail-with-body https://api.mediux.io/shows/1399

No account, API key, or token is needed. The response’s data property contains the Show. Open the Show reference for a full example.

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.

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.