Arch Labs Firms API

Reference info about firms.

Operations 2

GET /client-api/v0/firms Get a paginated list of firms #
GET /client-api/v0/firms/{id} Get a firm by ID #

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/arch-labs-firms-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

arch-labs-firms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arch Client Firms API
  version: 0.1.0
  description: '# Arch Client API Documentation


    ## Getting Started


    To get started, you need to request credentials from us at api-support@arch.co.'
servers:
- url: /
host: arch.co
tags:
- name: Firms
  description: Reference info about firms.
paths:
  /client-api/v0/firms:
    get:
      operationId: list-firms
      summary: Get a paginated list of firms
      security:
      - BearerAuth: []
      description: Returns a paginated list of firms that the authenticated user has access to.
      tags:
      - Firms
      parameters:
      - name: limit
        in: query
        description: The number of firms to return per page
        schema:
          type: integer
          default: 25
          minimum: 0
          maximum: 1000
      - name: offset
        in: query
        description: The number of firms to skip before collecting results
        schema:
          type: integer
          default: 0
          minimum: 0
      responses:
        '200':
          description: A list of firm data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FirmList'
        '500':
          description: Internal Server Error
  /client-api/v0/firms/{id}:
    get:
      operationId: get-individual-firm
      summary: Get a firm by ID
      security:
      - BearerAuth: []
      description: Get a firm by ID.
      tags:
      - Firms
      parameters:
      - name: id
        in: path
        description: The ID of the firm to get.
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Firm'
        '403':
          description: Firm not found or caller not authorized to view firm.
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    FirmList:
      type: object
      required:
      - kind
      - selfUrl
      - contents
      properties:
        kind:
          type: string
          enum:
          - page
          description: The kind of resource (always "page" for paginated responses)
        selfUrl:
          type: string
          description: The relative URL for accessing this page of results
          example: /firms?limit=25&offset=0
        contents:
          type: array
          description: Array of firm objects
          items:
            $ref: '#/components/schemas/Firm'
        prev:
          type: string
          description: The relative URL for the previous page (omitted if on first page)
          example: /firms?limit=25&offset=0
        next:
          type: string
          description: The relative URL for the next page (omitted if on last page)
          example: /firms?limit=25&offset=25
      example:
        kind: page
        selfUrl: /firms?limit=25&offset=0
        contents:
        - kind: Firm
          selfUrl: /firms/2632
          id: '2632'
          name: Arch Labs
        - kind: Firm
          selfUrl: /firms/1234
          id: '1234'
          name: Example Venture Partners
        next: /firms?limit=25&offset=25
    Firm:
      type: object
      required:
      - kind
      - selfUrl
      - id
      properties:
        kind:
          type: string
          enum:
          - Firm
        selfUrl:
          type: string
          description: The relative URL for accessing this resource
          example: /firms/2632
        id:
          type: string
          description: The firm ID.
          example: 2632
          readOnly: true
        name:
          type: string
          example: Arch Labs
          description: The name of the firm.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT