Phosphorus Devices API

The Devices API from Phosphorus — 1 operation(s) for devices.

Operations 1

GET /api/v3/devices/excluded Returns excluded devices, queryable by date, jobId #

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-devices-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-devices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Swagger documentation for the Phosphorus API
  version: 2.0.0
  title: Phosphorus Devices API
servers:
- url: /
  description: Server
tags:
- name: Devices
paths:
  /api/v3/devices/excluded:
    get:
      tags:
      - Devices
      summary: Returns excluded devices, queryable by date, jobId
      description: ''
      operationId: getExcludedDevicesv3
      deprecated: false
      parameters:
      - schema:
          type: string
          format: uuid
        name: jobId
        in: query
        required: false
      - schema:
          type: number
          format: float
          minimum: 1
          default: 1000
        name: limit
        in: query
        required: false
      - schema:
          type: number
          format: float
          minimum: 1
        name: offset
        in: query
        required: false
      - schema:
          type: string
          format: date-time
        name: startDate
        in: query
        required: false
      - schema:
          type: string
          format: date-time
        name: endDate
        in: query
        required: false
      - schema:
          type: string
        name: sortBy
        in: query
        required: false
      - schema:
          type: string
        name: sortDir
        in: query
        required: false
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  rows:
                    type: array
                    items:
                      $ref: '#/components/schemas/excludedDevicesObject'
                  meta:
                    type: object
                    properties:
                      total_rows:
                        type: number
                        format: float
                    required:
                    - total_rows
                    additionalProperties: false
                required:
                - rows
                additionalProperties: false
        '400':
          description: Invalid input
      security:
      - ApiKeyAuth: []
components:
  schemas:
    excludedDevicesObject:
      type: object
      properties:
        addr:
          type: string
        created:
          type: string
        model:
          type: string
        manufacturer:
          type: string
        type:
          type: string
        mac:
          type: string
        jobId:
          type: string
        siteId:
          type: string
      required:
      - addr
      - created
      - model
      - manufacturer
      - type
      - mac
      - jobId
      - siteId
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY