Terminal Use Search API

The Search API from Terminal Use — 1 operation(s) for search.

Operations 1

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-search-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

terminal-use-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sb0 Agent APIKeys Search API
  version: 0.1.0
servers:
- url: https://api.terminaluse.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Search
paths:
  /search:
    get:
      description: "Unified search endpoint for agents, tasks, and workspaces.\n\n    Searches by name using case-insensitive matching.\n    Results are sorted by relevance (exact matches first, then prefix matches, then contains)."
      operationId: search
      parameters:
      - description: Search query (minimum 2 characters)
        in: query
        name: q
        required: true
        schema:
          description: Search query (minimum 2 characters)
          minLength: 2
          title: Q
          type: string
      - description: Comma-separated list of types to search (agents,tasks,workspaces). If not provided, searches all types.
        in: query
        name: types
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Comma-separated list of types to search (agents,tasks,workspaces). If not provided, searches all types.
          title: Types
      - description: Optional namespace ID to filter results
        in: query
        name: namespace_id
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Optional namespace ID to filter results
          title: Namespace Id
      - description: Maximum number of results per type (max 50)
        in: query
        name: limit
        required: false
        schema:
          default: 10
          description: Maximum number of results per type (max 50)
          maximum: 50
          minimum: 1
          title: Limit
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      summary: Search Resources
      tags:
      - Search
components:
  schemas:
    SearchResultItem:
      description: A single search result item.
      properties:
        id:
          description: The unique identifier
          title: Id
          type: string
        name:
          description: The display name
          title: Name
          type: string
        namespace_id:
          anyOf:
          - type: string
          - type: 'null'
          description: The namespace this resource belongs to
          title: Namespace Id
        status:
          anyOf:
          - type: string
          - type: 'null'
          description: The current status
          title: Status
        type:
          $ref: '#/components/schemas/SearchResultType'
          description: The type of resource
      required:
      - type
      - id
      - name
      title: SearchResultItem
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
      - loc
      - msg
      - type
      title: ValidationError
      type: object
    SearchResponse:
      description: Response from the search endpoint.
      properties:
        query:
          description: The search query that was used
          title: Query
          type: string
        results:
          description: List of search results
          items:
            $ref: '#/components/schemas/SearchResultItem'
          title: Results
          type: array
        total:
          description: Total number of results across all types
          title: Total
          type: integer
      required:
      - total
      - query
      title: SearchResponse
      type: object
    SearchResultType:
      description: Types of resources that can be returned in search results.
      enum:
      - agent
      - task
      - workspace
      title: SearchResultType
      type: string
x-fern-idempotency-headers:
- header: Idempotency-Key
  name: idempotency_key