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/opslevel-graphql-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: OpsLevel Graph QL API
description: 'OpsLevel is a prescriptive internal developer portal for cataloging,
measuring, and scaffolding services. OpsLevel exposes a single GraphQL
endpoint at `/graphql` that accepts POST requests carrying a GraphQL
query or mutation. Authentication uses a Bearer API token in the
`Authorization` header.
'
version: 1.0.0
contact:
name: OpsLevel
url: https://www.opslevel.com
servers:
- url: https://api.opslevel.com
description: OpsLevel production API
security:
- bearerAuth: []
tags:
- name: GraphQL
description: OpsLevel GraphQL endpoint.
paths:
/graphql:
post:
tags:
- GraphQL
summary: Execute a GraphQL query or mutation
description: 'Single endpoint that accepts any OpsLevel GraphQL query or mutation.
Examples: list services, list teams, run checks, update service
properties.
'
operationId: executeGraphQL
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GraphQLRequest'
examples:
accountServices:
summary: List services in the account
value:
query: "query Services {\n account {\n services {\n nodes { id name owner { name } }\n pageInfo { endCursor hasNextPage }\n }\n }\n}\n"
accountTeams:
summary: List teams in the account
value:
query: "query Teams {\n account {\n teams {\n nodes { id name alias }\n }\n }\n}\n"
responses:
'200':
description: GraphQL response payload (may contain errors alongside data).
content:
application/json:
schema:
$ref: '#/components/schemas/GraphQLResponse'
'401':
description: Missing or invalid bearer token.
content:
application/json:
schema:
$ref: '#/components/schemas/GraphQLResponse'
components:
schemas:
GraphQLRequest:
type: object
required:
- query
properties:
query:
type: string
description: GraphQL query or mutation document.
variables:
type: object
description: Variables for the GraphQL document.
additionalProperties: true
operationName:
type: string
description: Operation name when the document contains multiple operations.
GraphQLError:
type: object
properties:
message:
type: string
path:
type: array
items:
oneOf:
- type: string
- type: integer
extensions:
type: object
additionalProperties: true
GraphQLResponse:
type: object
properties:
data:
type: object
additionalProperties: true
nullable: true
errors:
type: array
items:
$ref: '#/components/schemas/GraphQLError'
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: Token
description: 'OpsLevel API token created in the OpsLevel app. Supply as
`Authorization: Bearer ${TOKEN}`.
'
externalDocs:
description: OpsLevel GraphQL Documentation
url: https://docs.opslevel.com/docs/graphql