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/runbuggy-companies-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: Companies API
description: Company resource operations.
termsOfService: https://runbuggy.com/terms/
contact:
name: Support
email: support@runbuggy.com
license:
name: Copyright © RunBuggy 2020
url: https://runbuggy.com/terms/
version: '1.0'
servers:
- url: https://apps.runbuggy.com/staging-v2/api
tags:
- name: Companies
description: Companies operations.
paths:
/companies/authorized/companies:
get:
tags:
- Companies
summary: Retrieve authorized companies
description: Retrieve authorized companies.
operationId: getCompaniesThatAuthorizedCompanyUsingGET
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Company'
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
deprecated: false
security:
- Authorization: []
servers:
- url: https://apps.runbuggy.com/staging-v2/api
/companies/authorized/companies/findByUserName:
get:
tags:
- Companies
summary: Retrieve authorized companies by user
description: Retrieve authorized companies by username.
operationId: getCompaniesThatAuthorizedCompanyIdByUserIdUsingGET
parameters:
- name: username
in: query
description: username
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Company'
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
deprecated: false
security:
- Authorization: []
servers:
- url: https://apps.runbuggy.com/staging-v2/api
components:
schemas:
Company:
type: object
title: Company
description: A company.
properties:
id:
type: string
description: The id of the company
x-examples:
- c0ef80ce-2579-4682-af4f-c1d29457848a
name:
type: string
description: The name of the company
x-examples:
- Auto Land
type:
type: string
enum:
- DEALER
- AUCTION
description: See enumeration for possible values.
securitySchemes:
Authorization:
type: apiKey
description: See the [Authentication Guide](/docs/shipping/b6b6c2d4906e9-authentication).
name: Authorization
in: header