Phonic workspace API

The workspace API from Phonic — 1 operation(s) for workspace.

Operations 2

GET /workspace Get #
PATCH /workspace Update #

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/phonic-workspace-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

phonic-workspace-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference agents Workspace API
  version: 1.0.0
servers:
- url: https://api.phonic.ai/v1
  description: https://api.phonic.ai/v1
tags:
- name: workspace
paths:
  /workspace:
    get:
      operationId: get
      summary: Get
      description: Returns information about the workspace.
      tags:
      - workspace
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication header of the form `Bearer <PHONIC_API_KEY>`. Manage your API keys [here](https://phonic.co/api-keys).
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workspace_get_Response_200'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicError'
    patch:
      operationId: update
      summary: Update
      description: Updates the workspace.
      tags:
      - workspace
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication header of the form `Bearer <PHONIC_API_KEY>`. Manage your API keys [here](https://phonic.co/api-keys).
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/workspace_update_Response_200'
        '400':
          description: Invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
        '401':
          description: Unauthorized (authentication missing or invalid)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateWorkspaceRequest'
components:
  schemas:
    workspace_get_Response_200:
      type: object
      properties:
        active_conversations:
          type: integer
          description: Number of conversations currently in progress for this workspace.
        max_active_conversations:
          type: integer
          description: Maximum number of concurrent conversations allowed for this workspace.
        logo_url:
          type:
          - string
          - 'null'
          description: URL of the workspace logo (PNG or SVG), or null if not set.
        invite_link_allowed_domains:
          type: array
          items:
            type: string
          description: Email domains allowed to join the workspace via invite link.
        ip_allowlist:
          type: array
          items:
            type: string
          description: IP addresses or CIDR ranges allowed to access the workspace.
      required:
      - active_conversations
      - max_active_conversations
      - logo_url
      - invite_link_allowed_domains
      - ip_allowlist
      title: workspace_get_Response_200
    BasicErrorError:
      type: object
      properties:
        message:
          type: string
          description: Error message
        code:
          type: string
          description: Error code
      required:
      - message
      title: BasicErrorError
    ValidationErrorError:
      type: object
      properties:
        message:
          type: string
          description: Error message
      required:
      - message
      title: ValidationErrorError
    workspace_update_Response_200:
      type: object
      properties:
        success:
          type: boolean
      required:
      - success
      title: workspace_update_Response_200
    BasicError:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/BasicErrorError'
      title: BasicError
    ValidationError:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/ValidationErrorError'
        param_errors:
          type: object
          additionalProperties:
            type: string
          description: Parameter-specific validation errors
      required:
      - error
      - param_errors
      title: ValidationError
    UpdateWorkspaceRequest:
      type: object
      properties:
        logo_url:
          type:
          - string
          - 'null'
          description: URL of the workspace logo. Must be an https URL ending in .png or .svg, or null to clear it.
        invite_link_allowed_domains:
          type: array
          items:
            type: string
          description: Email domains allowed to join the workspace via invite link.
        ip_allowlist:
          type: array
          items:
            type: string
          description: IP addresses or CIDR ranges allowed to access the workspace.
      title: UpdateWorkspaceRequest
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Bearer authentication header of the form `Bearer <PHONIC_API_KEY>`. Manage your API keys [here](https://phonic.co/api-keys).