Archrock Fleet API

The Fleet API from Archrock — 2 operation(s) for fleet.

Operations 2

GET /fleet/statistics Get compression fleet statistics #
GET /fleet/equipment List compression equipment #

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/archrock-fleet-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

archrock-fleet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Archrock Investor Relations Financials Fleet API
  description: API providing access to Archrock investor relations data including financial reports, compression fleet statistics, SEC filings, and operational performance metrics.
  version: 1.0.0
  contact:
    name: Archrock Investor Relations
    url: https://www.archrock.com/investor-relations
servers:
- url: https://api.archrock.com/v1
  description: Production
security:
- ApiKeyAuth: []
tags:
- name: Fleet
paths:
  /fleet/statistics:
    get:
      summary: Get compression fleet statistics
      operationId: getFleetStatistics
      tags:
      - Fleet
      parameters:
      - name: year
        in: query
        schema:
          type: integer
      - name: quarter
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: Fleet statistics and utilization metrics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FleetStatistics'
  /fleet/equipment:
    get:
      summary: List compression equipment
      operationId: listEquipment
      tags:
      - Fleet
      parameters:
      - name: status
        in: query
        schema:
          type: string
          enum:
          - active
          - idle
          - maintenance
      - name: limit
        in: query
        schema:
          type: integer
          default: 20
      - name: offset
        in: query
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: List of compression equipment
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EquipmentList'
components:
  schemas:
    Equipment:
      type: object
      properties:
        id:
          type: string
        unitNumber:
          type: string
        horsepowerRating:
          type: integer
        engineType:
          type: string
        compressionType:
          type: string
        status:
          type: string
          enum:
          - active
          - idle
          - maintenance
        location:
          type: string
        customer:
          type: string
        deploymentDate:
          type: string
          format: date
    EquipmentList:
      type: object
      properties:
        total:
          type: integer
        offset:
          type: integer
        limit:
          type: integer
        equipment:
          type: array
          items:
            $ref: '#/components/schemas/Equipment'
    FleetStatistics:
      type: object
      properties:
        year:
          type: integer
        quarter:
          type: integer
        totalHorsepower:
          type: integer
          description: Total fleet horsepower
        activeHorsepower:
          type: integer
          description: Active fleet horsepower
        utilizationRate:
          type: number
          description: Fleet utilization rate as percentage
        averageHorsepowerPerUnit:
          type: number
        totalUnits:
          type: integer
        newUnitDeployments:
          type: integer
        unitRetirements:
          type: integer
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key