Phosphorus Sites API

The Sites API from Phosphorus — 1 operation(s) for sites.

Operations 1

GET /api/v2/sites/{id} Get a site #

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-sites-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-sites-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Swagger documentation for the Phosphorus API
  version: 2.0.0
  title: Phosphorus Sites API
servers:
- url: /
  description: Server
tags:
- name: Sites
paths:
  /api/v2/sites/{id}:
    get:
      tags:
      - Sites
      summary: Get a site
      description: ''
      operationId: getSitev2
      deprecated: false
      parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SiteResponse'
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
components:
  schemas:
    SiteResponse:
      type: object
      properties:
        id:
          type: string
        host:
          type: string
        port:
          type: integer
        hbPort:
          type: integer
        name:
          type: string
        lastSeen:
          type: string
          format: date-time
        online:
          type: boolean
        default:
          type: boolean
        isLocal:
          type: boolean
        acceptingScans:
          type: boolean
        smMode:
          type: string
        config:
          type: object
          properties: {}
          additionalProperties: false
        smVersion:
          type: string
        smHostInfo:
          type: object
          properties: {}
          additionalProperties: false
        addr:
          type: string
      required:
      - id
      - host
      - port
      - hbPort
      - name
      - online
      - default
      - isLocal
      - acceptingScans
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY