Archrock Financials API

The Financials API from Archrock — 1 operation(s) for financials.

Operations 1

GET /financials/quarterly Get quarterly financial results #

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-financials-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-financials-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Archrock Investor Relations Financials 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: Financials
paths:
  /financials/quarterly:
    get:
      summary: Get quarterly financial results
      operationId: getQuarterlyFinancials
      tags:
      - Financials
      parameters:
      - name: year
        in: query
        description: Fiscal year
        schema:
          type: integer
      - name: quarter
        in: query
        description: Fiscal quarter (1-4)
        schema:
          type: integer
          minimum: 1
          maximum: 4
      responses:
        '200':
          description: Quarterly financial results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuarterlyFinancials'
        '401':
          description: Unauthorized
components:
  schemas:
    QuarterlyFinancials:
      type: object
      properties:
        year:
          type: integer
        quarter:
          type: integer
        revenue:
          type: number
          description: Total revenue in millions USD
        grossMargin:
          type: number
          description: Gross margin percentage
        ebitda:
          type: number
          description: Adjusted EBITDA in millions USD
        netIncome:
          type: number
          description: Net income in millions USD
        earningsPerShare:
          type: number
        dividendPerShare:
          type: number
        operatingCashFlow:
          type: number
        capitalExpenditures:
          type: number
        reportDate:
          type: string
          format: date
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key