Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/zudoku-theming-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Zudoku Configuration API References Theming API
description: Zudoku is an open-source, developer-first API documentation framework built by Zuplo. This specification describes the configuration interface and internal structure used by the Zudoku platform to generate interactive API documentation from OpenAPI schemas. Zudoku does not expose a traditional REST API; instead, it uses a file-based configuration model (zudoku.config.ts or zudoku.config.tsx) to define API references, navigation, authentication, theming, and plugin integrations. This OpenAPI specification documents the logical configuration resources and their schemas for interoperability and catalog purposes.
version: 1.0.0
contact:
name: Zuplo
url: https://zudoku.dev
license:
name: MIT
url: https://github.com/zuplo/zudoku/blob/main/LICENSE
servers:
- url: https://zudoku.dev
description: Zudoku documentation site
tags:
- name: Theming
description: Theme, branding, and visual customization.
paths:
/config/theme:
get:
operationId: getTheme
summary: Zudoku Get Theme Configuration
description: Returns the theming and branding configuration including colors, fonts, logos, and dark mode settings that customize the look and feel of the generated documentation portal.
tags:
- Theming
responses:
'200':
description: The theme configuration.
content:
application/json:
schema:
$ref: '#/components/schemas/ThemeConfig'
components:
schemas:
ThemeConfig:
type: object
description: Theme and branding configuration for customizing the look and feel of the generated documentation portal.
properties:
light:
$ref: '#/components/schemas/ThemeColors'
dark:
$ref: '#/components/schemas/ThemeColors'
fonts:
type: object
properties:
heading:
type: string
body:
type: string
code:
type: string
ThemeColors:
type: object
description: Color palette for a theme mode.
properties:
primary:
type: string
description: Primary brand color.
background:
type: string
description: Background color.
border:
type: string
description: Border color.