Terminal Use Authentication API

The Authentication API from Terminal Use — 1 operation(s) for authentication.

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/terminal-use-authentication-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

terminal-use-authentication-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Sb0 Agent APIKeys Authentication API
  version: 0.1.0
tags:
- name: Authentication
paths:
  /v1/authn:
    post:
      description: Validate a WorkOS JWT and return the principal context.
      operationId: authenticate_v1_authn_post
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrincipalContextEntity'
          description: Successful Response
      summary: Authenticate Token
      tags:
      - Authentication
components:
  schemas:
    PrincipalContextEntity:
      description: 'Principal context representing an authenticated user or service user.


        The member_id is:

        - For human users: WorkOS user ID (e.g., "user_xyz")

        - For service users: Service user ID (e.g., "svc_abc123")


        This is the primary identifier used for authorization checks in OpenFGA.'
      properties:
        api_key_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Api Key Id
        email:
          anyOf:
          - type: string
          - type: 'null'
          title: Email
        is_service_user:
          default: false
          title: Is Service User
          type: boolean
        member_id:
          title: Member Id
          type: string
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        org_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Org Id
        role:
          anyOf:
          - type: string
          - type: 'null'
          title: Role
      required:
      - member_id
      title: PrincipalContextEntity
      type: object
x-fern-idempotency-headers:
- header: Idempotency-Key
  name: idempotency_key