Apiman Search API
The Search API from Apiman — 7 operation(s) for search.
The Search API from Apiman — 7 operation(s) for search.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/apiman-search-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Manager REST Actions Search API
description: The API Manager REST API is used by the API Manager UI to get stuff done. You can use it to automate any API Management task you wish. For example, create new Organizations, Plans, Clients, and APIs.
version: 3.1.0-SNAPSHOT
servers:
- url: /apiman
tags:
- name: Search
paths:
/search/apiCatalog/namespaces:
get:
tags:
- Search
operationId: getApiNamespaces
responses:
'200':
description: If the namespaces were successfully returned.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ApiNamespaceBean'
/search/apiCatalog/entries:
post:
tags:
- Search
operationId: searchApiCatalog
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SearchCriteriaBean'
responses:
'200':
description: If the search is successful.
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultsBeanAvailableApiBean'
/search/apis:
post:
tags:
- Search
operationId: searchApis_2
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SearchCriteriaBean'
responses:
'200':
description: If the search is successful.
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultsBeanApiSummaryBean'
/search/clients:
post:
tags:
- Search
operationId: searchClients
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SearchCriteriaBean'
responses:
'200':
description: If the search is successful.
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultsBeanClientSummaryBean'
/search/organizations:
post:
tags:
- Search
operationId: searchOrgs
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SearchCriteriaBean'
responses:
'200':
description: If the search is successful.
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultsBeanOrganizationSummaryBean'
/search/roles:
post:
tags:
- Search
operationId: searchRoles
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SearchCriteriaBean'
responses:
'200':
description: If the search completes successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultsBeanRoleBean'
/search/users:
post:
tags:
- Search
operationId: searchUsers
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SearchCriteriaBean'
responses:
'200':
description: If the search is successful.
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultsBeanUserSearchResult'
components:
schemas:
KeyValueTagDto:
required:
- key
type: object
properties:
key:
type: string
value:
type: string
description: Key value tag pair
PagingBean:
type: object
properties:
page:
type: integer
format: int32
pageSize:
type: integer
format: int32
SearchResultsBeanClientSummaryBean:
type: object
properties:
beans:
type: array
items:
$ref: '#/components/schemas/ClientSummaryBean'
totalSize:
type: integer
format: int32
RoleBean:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
createdBy:
type: string
createdOn:
type: string
format: date-time
autoGrant:
type: boolean
permissions:
uniqueItems: true
type: array
items:
type: string
enum:
- orgView
- orgEdit
- orgAdmin
- apiView
- apiEdit
- apiAdmin
- clientView
- clientEdit
- clientAdmin
- planView
- planEdit
- planAdmin
SearchResultsBeanApiSummaryBean:
type: object
properties:
beans:
type: array
items:
$ref: '#/components/schemas/ApiSummaryBean'
totalSize:
type: integer
format: int32
SearchResultsBeanOrganizationSummaryBean:
type: object
properties:
beans:
type: array
items:
$ref: '#/components/schemas/OrganizationSummaryBean'
totalSize:
type: integer
format: int32
OrganizationSummaryBean:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
numClients:
type: integer
format: int32
numApis:
type: integer
format: int32
numMembers:
type: integer
format: int32
ApiNamespaceBean:
type: object
properties:
name:
type: string
ownedByUser:
type: boolean
current:
type: boolean
SearchCriteriaBean:
type: object
properties:
filters:
type: array
items:
$ref: '#/components/schemas/SearchCriteriaFilterBean'
orderBy:
$ref: '#/components/schemas/OrderByBean'
paging:
$ref: '#/components/schemas/PagingBean'
pageSize:
$ref: '#/components/schemas/SearchCriteriaBean'
page:
$ref: '#/components/schemas/SearchCriteriaBean'
SearchResultsBeanRoleBean:
type: object
properties:
beans:
type: array
items:
$ref: '#/components/schemas/RoleBean'
totalSize:
type: integer
format: int32
SearchResultsBeanAvailableApiBean:
type: object
properties:
beans:
type: array
items:
$ref: '#/components/schemas/AvailableApiBean'
totalSize:
type: integer
format: int32
UserSearchResult:
type: object
properties:
username:
type: string
fullName:
type: string
ClientSummaryBean:
type: object
properties:
organizationId:
type: string
organizationName:
type: string
image:
type: string
id:
type: string
name:
type: string
description:
type: string
numContracts:
type: integer
format: int32
OrderByBean:
type: object
properties:
ascending:
type: boolean
name:
type: string
SearchResultsBeanUserSearchResult:
type: object
properties:
beans:
type: array
items:
$ref: '#/components/schemas/UserSearchResult'
totalSize:
type: integer
format: int32
AvailableApiBean:
type: object
properties:
id:
type: string
icon:
type: string
endpoint:
type: string
routeEndpoint:
type: string
endpointType:
type: string
enum:
- rest
- soap
name:
type: string
description:
type: string
definitionUrl:
type: string
routeDefinitionUrl:
type: string
definitionType:
type: string
enum:
- None
- SwaggerJSON
- SwaggerYAML
- WSDL
- WADL
- RAML
- External
namespace:
type: string
tags:
uniqueItems: true
type: array
items:
type: string
internal:
type: boolean
SearchCriteriaFilterBean:
type: object
properties:
name:
type: string
value:
type: string
operator:
type: string
enum:
- bool_eq
- eq
- neq
- gt
- gte
- lt
- lte
- like
ApiSummaryBean:
type: object
properties:
organizationId:
type: string
organizationName:
type: string
image:
type: string
id:
type: string
name:
type: string
description:
type: string
createdOn:
type: string
format: date-time
tags:
uniqueItems: true
type: array
items:
$ref: '#/components/schemas/KeyValueTagDto'