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/smartbear-domains-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: SmartBear SwaggerHub Domains API
description: The SwaggerHub API provides programmatic access to manage API definitions, domains, projects, and integrations on the SwaggerHub platform. It allows teams to automate API lifecycle management including creating, updating, publishing, and versioning APIs. The API also supports organization management, member access control, and integration configuration with third-party services.
version: 1.0.0
termsOfService: https://smartbear.com/terms-of-use/
contact:
name: SmartBear Support
url: https://support.smartbear.com/swaggerhub/
license:
name: SmartBear License
url: https://smartbear.com/terms-of-use/
servers:
- url: https://api.swaggerhub.com
description: SwaggerHub SaaS
security:
- ApiKeyAuth: []
tags:
- name: Domains
description: Manage reusable domain definitions
paths:
/domains/{owner}:
get:
operationId: getOwnerDomains
summary: Get Owner Domains
description: Retrieves all domains for a given owner.
tags:
- Domains
parameters:
- name: owner
in: path
required: true
schema:
type: string
- name: page
in: query
required: false
schema:
type: integer
default: 0
- name: limit
in: query
required: false
schema:
type: integer
default: 10
responses:
'200':
description: List of domains
content:
application/json:
schema:
$ref: '#/components/schemas/ApisJson'
/domains/{owner}/{domain}/{version}:
get:
operationId: getDomainDefinition
summary: Get Domain Definition
description: Retrieves the definition for a specific domain version.
tags:
- Domains
parameters:
- name: owner
in: path
required: true
schema:
type: string
- name: domain
in: path
required: true
schema:
type: string
- name: version
in: path
required: true
schema:
type: string
responses:
'200':
description: Domain definition
content:
application/yaml:
schema:
type: string
post:
operationId: saveDomainDefinition
summary: Create Or Update Domain
description: Creates or updates a domain definition.
tags:
- Domains
parameters:
- name: owner
in: path
required: true
schema:
type: string
- name: domain
in: path
required: true
schema:
type: string
- name: version
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/yaml:
schema:
type: string
responses:
'200':
description: Domain updated
'201':
description: Domain created
delete:
operationId: deleteDomainVersion
summary: Delete Domain Version
description: Deletes a specific domain version.
tags:
- Domains
parameters:
- name: owner
in: path
required: true
schema:
type: string
- name: domain
in: path
required: true
schema:
type: string
- name: version
in: path
required: true
schema:
type: string
responses:
'200':
description: Domain version deleted
components:
schemas:
ApisJson:
type: object
properties:
offset:
type: integer
totalCount:
type: integer
apis:
type: array
items:
$ref: '#/components/schemas/ApiEntry'
ApiEntry:
type: object
properties:
name:
type: string
description:
type: string
created:
type: string
format: date-time
modified:
type: string
format: date-time
swaggerUrl:
type: string
url:
type: string
versions:
type: array
items:
type: string
owner:
type: string
isPrivate:
type: boolean
tags:
type: array
items:
type: string
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: Authorization