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/gradient-models-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: Gradient Cloud AI Models API
version: v1
description: OpenAI-compatible inference API for Gradient Cloud — the enterprise inference service of Gradient's Open Intelligence Stack, serving open models across a distributed compute network (Parallax) over Gradient's peer-to-peer data motion engine (Lattica).
contact:
name: Gradient
url: https://docs.gradient.network/enterprise-solutions/gradient-cloud/api-reference-documentation
x-apievangelist-generated: true
x-apievangelist-source: https://docs.gradient.network/enterprise-solutions/gradient-cloud/api-reference-documentation.md
servers:
- url: https://apis.gradient.network/api/v1
description: Gradient Cloud production
security:
- AccessKey: []
tags:
- name: Models
description: Model listing and management
paths:
/ai/models:
get:
tags:
- Models
operationId: listModels
summary: List all models
description: List of all available AI models. No authentication required.
security: []
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/ModelList'
example:
object: list
data:
- id: qwen/qwen3-coder-480b-instruct-fp8
object: model
created: 1640995200
owned_by: qwen
permission: []
root: qwen/qwen3-coder-480b-instruct-fp8
parent: null
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
Model:
type: object
properties:
id:
type: string
object:
type: string
created:
type: integer
owned_by:
type: string
permission:
type: array
items:
type: object
root:
type: string
parent:
type:
- string
- 'null'
ModelList:
type: object
properties:
object:
type: string
data:
type: array
items:
$ref: '#/components/schemas/Model'
Error:
type: object
properties:
error:
type: object
properties:
message:
type: string
type:
type: string
code:
type: string
securitySchemes:
AccessKey:
type: http
scheme: bearer
description: 'Access Key passed as `Authorization: Bearer <access-key>`.'