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.
All 92 tools
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/inrix-parking-api-inrix-parking-services-30-parkme"
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 email required.
A second provider on the same verified email joins the account you already have.
{
"swagger": "2.0",
"info": {
"title": "INRIX Parkme API",
"description": "INRIX Parkme Web Service API",
"contact": {
"email": "support@inrix.com"
},
"version": "v1"
},
"host": "parking-api.inrix.com",
"schemes": [
"https"
],
"basePath": "/",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"securityDefinitions": {
"Basic": {
"type": "basic"
}
},
"security": [
{
"Basic": []
}
],
"paths": {
"/accounts/mobile/delete/": {
"delete": {
"operationId": "accounts_mobile_delete_delete",
"description": "Endpoint for deleting a user account from mobile app",
"parameters": [],
"responses": {
"204": {
"description": ""
}
},
"tags": [
"accounts"
]
},
"parameters": []
},
"/api/caniparkhere/": {
"get": {
"operationId": "api_caniparkhere_list",
"description": "given a coordinate finds the nearest segments and computes which rate is currently active and attaches additional\ndata to json response.",
"parameters": [],
"responses": {
"200": {
"description": ""
}
},
"tags": [
"api"
]
},
"parameters": []
},
"/api/openspots/events/": {
"get": {
"operationId": "api_openspots_events_list",
"description": "",
"parameters": [
{
"name": "search",
"in": "query",
"description": "A search term.",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/OpenParkEvent"
}
}
}
},
"tags": [
"api"
]
},
"parameters": []
},
"/api/openspots/events/{pk_event}/": {
"get": {
"operationId": "api_openspots_events_read",
"description": "",
"parameters": [],
"responses": {
"200": {
"description": "",
"schema": {
"$ref": "#/definitions/OpenParkEvent"
}
}
},
"tags": [
"api"
]
},
"parameters": [
{
"name": "pk_event",
"in": "path",
"description": "A unique value identifying this open park event.",
"required": true,
"type": "string"
}
]
}
},
"definitions": {
"OpenParkEvent": {
"required": [
"ts"
],
"type": "object",
"properties": {
"ts": {
"title": "Ts",
"type": "string",
"format": "date-time"
},
"polyline": {
"title": "Polyline",
"type": "string",
"readOnly": true
},
"quadkey17": {
"title": "Quadkey17",
"type": "string",
"readOnly": true
},
"source": {
"title": "Source",
"type": "string",
"readOnly": true
}
}
}
}
}