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/apptentive-info-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:
description: Public API Service
version: 2.0.0
title: public-api-service experimental Info API
termsOfService: https://www.apptentive.com/terms/
servers:
- url: https://data.apptentive.com/
- url: http://data.apptentive.com/
tags:
- name: info
description: info endpoints
paths:
/info:
get:
tags:
- info
summary: Show accessible endpoints
description: show access data endpoints
operationId: showDataEndpoints
security:
- ApiKeyAuth: []
parameters:
- name: api_key
in: query
description: (optional) you can provide the X-API-KEY as 'api_key' query parameter
required: false
schema:
type: string
- name: accept
in: query
description: (optional) you can provide the accept header as 'accept' query parameter
required: false
schema:
type: string
responses:
'200':
description: access information
content:
application/json:
schema:
$ref: '#/components/schemas/InfoResponse'
application/xml:
schema:
$ref: '#/components/schemas/InfoResponse'
'400':
description: bad request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorBadRequestResponse'
application/xml:
schema:
$ref: '#/components/schemas/ErrorBadRequestResponse'
'401':
description: not authorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorUnauthorizedResponse'
application/xml:
schema:
$ref: '#/components/schemas/ErrorUnauthorizedResponse'
'500':
description: internal server error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorInternalErrorResponse'
application/xml:
schema:
$ref: '#/components/schemas/ErrorInternalErrorResponse'
components:
schemas:
InfoResponse:
type: object
properties:
access:
$ref: '#/components/schemas/AccessInfo'
cache:
$ref: '#/components/schemas/CacheInfo'
ErrorUnauthorizedResponse:
type: object
properties:
error:
type: string
description: the root cause in text representation
example: not authorized
ErrorBadRequestResponse:
type: object
properties:
error:
type: string
description: the root cause in text representation
example: some params are missing
ErrorInternalErrorResponse:
type: object
properties:
error:
type: string
description: the root cause in text representation
example: unable to get the data - please contact the support team
CacheInfo:
type: object
properties:
rate:
type: string
description: how many requests is elligble per 5 minutes
example: 100
limit:
type: string
description: how many requests are remaining before reset
example: 99
reset:
type: string
description: date when the limit will be reset
example: 2022-09-16 02:20 UTC
AccessInfo:
type: object
properties:
raw_endpoints:
type: array
items:
type: string
example: data.apptentive.com/...
metrics_endpoints:
type: array
items:
type: string
example: data.apptentive.com/...
securitySchemes:
ApiKeyAuth:
type: apiKey
name: X-API-KEY
in: header