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/ceph-auth-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: Ceph Manager REST Auth API
description: 'REST API exposed by the Ceph Manager (ceph-mgr) dashboard module for
managing and monitoring a Ceph cluster, including pools, OSDs, hosts,
monitors, RGW, RBD, CephFS, users, and cluster configuration. Authentication
uses a JWT obtained from POST /api/auth, supplied via the Authorization
Bearer header. API versioning is negotiated via the Accept header using
application/vnd.ceph.api.v{major}.{minor}+json. Generated as a best-effort
spec from public Ceph documentation; the canonical OpenAPI is served by
every Ceph Manager instance at /docs/api.json.
'
version: '1.0'
contact:
name: Ceph
url: https://docs.ceph.com/en/latest/mgr/ceph_api/
license:
name: LGPL-2.1
url: https://github.com/ceph/ceph/blob/main/COPYING
servers:
- url: https://{manager_host}:{dashboard_port}/api
description: Ceph Manager dashboard
variables:
manager_host:
default: localhost
dashboard_port:
default: '8443'
security:
- bearerAuth: []
tags:
- name: Auth
paths:
/auth:
post:
tags:
- Auth
summary: Obtain JWT token
description: Authenticate with username and password to obtain a JWT for subsequent calls.
operationId: login
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AuthRequest'
responses:
'201':
description: Authentication successful.
content:
application/json:
schema:
$ref: '#/components/schemas/AuthResponse'
'401':
$ref: '#/components/responses/Error'
/auth/check:
post:
tags:
- Auth
summary: Validate token
description: Validate the current bearer token.
operationId: checkAuth
requestBody:
content:
application/json:
schema:
type: object
properties:
token:
type: string
responses:
'200':
description: Token validity status.
content:
application/json:
schema:
type: object
/auth/logout:
post:
tags:
- Auth
summary: Logout
description: Revoke the current authentication session.
operationId: logout
responses:
'200':
description: Logged out.
components:
responses:
Error:
description: Error response.
content:
application/json:
schema:
type: object
properties:
detail:
type: string
code:
type: string
schemas:
AuthResponse:
type: object
properties:
token:
type: string
username:
type: string
permissions:
type: object
additionalProperties:
type: array
items:
type: string
pwdExpirationDate:
type: integer
nullable: true
sso:
type: boolean
pwdUpdateRequired:
type: boolean
AuthRequest:
type: object
required:
- username
- password
properties:
username:
type: string
password:
type: string
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: JWT obtained from POST /api/auth.