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/credentially-meta-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
OpenAPI Specification
openapi: 3.2.0
info:
title: Credentially Public Compliance-packages Meta API
description: Public API Proxy with Rate Limiting and Audit
version: 2.0.0
servers:
- url: https://app.credentially.io/gateway
description: Generated server url
tags:
- name: Meta
description: API for fetching metadata
paths:
/meta/events:
get:
tags:
- Meta
summary: Get list of available webhook event types with details
operationId: getAvailableEventTypes
responses:
'200':
description: OK
content:
'*/*':
schema:
type: array
items:
$ref: '#/components/schemas/EventTypeInfo'
security:
- bearer-key: []
components:
schemas:
PayloadFieldInfo:
type: object
properties:
key:
type: string
description:
type: string
dataType:
type: string
enum:
- STRING
- NUMBER
- BOOLEAN
- OBJECT
- ARRAY
- UUID
- DATE_TIME
- DATE
exampleValue: {}
EventTypeInfo:
type: object
properties:
type:
type: string
description:
type: string
payloadFields:
type: array
items:
$ref: '#/components/schemas/PayloadFieldInfo'
securitySchemes:
bearer-key:
type: http
scheme: bearer
bearerFormat: JWT