Phosphorus Providers API

The Providers API from Phosphorus — 5 operation(s) for providers.

Operations 5

GET /api/v3/providers Gets all providers #
GET /api/v3/providers/{id} Get provider by uuid #
GET /api/v3/providers/{id}/credentials Returns a list of credentials available to assign #
POST /api/v3/providers/{id}/health-check Performs provider health check #
POST /api/v3/providers/health-check Performs a health check for every provider with a low concurrency #

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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/phosphorus-providers-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

phosphorus-providers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Swagger documentation for the Phosphorus API
  version: 2.0.0
  title: Phosphorus Providers API
servers:
- url: /
  description: Server
tags:
- name: Providers
paths:
  /api/v3/providers:
    get:
      tags:
      - Providers
      summary: Gets all providers
      description: ''
      operationId: getProvidersv3
      deprecated: false
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json: {}
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
  /api/v3/providers/{id}:
    get:
      tags:
      - Providers
      summary: Get provider by uuid
      description: ''
      operationId: getProviderByIdv3
      deprecated: false
      parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json: {}
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
  /api/v3/providers/{id}/credentials:
    get:
      tags:
      - Providers
      summary: Returns a list of credentials available to assign
      description: ''
      operationId: listProviderCredentialsv3
      deprecated: false
      parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json: {}
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
  /api/v3/providers/{id}/health-check:
    post:
      tags:
      - Providers
      summary: Performs provider health check
      description: ''
      operationId: performHealthCheckv3
      deprecated: false
      parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json: {}
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
  /api/v3/providers/health-check:
    post:
      tags:
      - Providers
      summary: Performs a health check for every provider with a low concurrency
      description: ''
      operationId: performAllHealthChecksv3
      deprecated: false
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json: {}
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY