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/onecli-user-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: OneCLI Agent Setup User API
version: '1.0'
description: 'The OneCLI API lets you manage agents, secrets, policy rules, app connections, and user settings programmatically.
**Base URL:** `https://api.onecli.sh/v1` (Cloud) or `http://localhost:10254/v1` (self-hosted)
## Authentication
All endpoints require authentication via one of:
- **API Key** — `Authorization: Bearer <key>` header. Generate keys in the dashboard or via `GET /v1/user/api-key`.
- **Session** — Cookie-based session from the web dashboard.
For organization-scoped API keys, include the `X-Project-Id` header to specify which project to operate on.
'
servers:
- url: https://api.onecli.sh/v1
description: OneCLI Cloud
- url: http://localhost:10254/v1
description: Self-hosted (Docker)
security:
- bearerAuth: []
tags:
- name: User
description: Manage your user profile and API keys.
paths:
/user:
get:
operationId: getUser
summary: Get current user
description: Returns the profile of the authenticated user.
tags:
- User
responses:
'200':
description: User profile
content:
application/json:
schema:
$ref: '#/components/schemas/User'
patch:
operationId: updateUser
summary: Update user profile
tags:
- User
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
properties:
name:
type: string
minLength: 1
maxLength: 255
responses:
'200':
description: Profile updated
content:
application/json:
schema:
type: object
properties:
id:
type: string
email:
type: string
name:
type: string
/user/api-key:
get:
operationId: getApiKey
summary: Get API key
description: Returns the current API key for the authenticated user in the current project.
tags:
- User
responses:
'200':
description: API key
content:
application/json:
schema:
type: object
properties:
apiKey:
type: string
/user/api-key/regenerate:
post:
operationId: regenerateApiKey
summary: Regenerate API key
description: Generates a new API key, immediately invalidating the previous one.
tags:
- User
responses:
'200':
description: New API key
content:
application/json:
schema:
type: object
properties:
apiKey:
type: string
components:
schemas:
User:
type: object
properties:
id:
type: string
email:
type: string
name:
type: string
nullable: true
createdAt:
type: string
format: date-time
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: API key obtained from the dashboard or `GET /user/api-key`