Archrock SEC Filings API

The SEC Filings API from Archrock — 1 operation(s) for sec filings.

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-sec-filings-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

archrock-sec-filings-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Archrock Investor Relations Financials SEC Filings 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: SEC Filings
paths:
  /sec-filings:
    get:
      summary: List SEC filings
      operationId: listSecFilings
      tags:
      - SEC Filings
      parameters:
      - name: type
        in: query
        schema:
          type: string
          enum:
          - 10-K
          - 10-Q
          - 8-K
          - DEF14A
          - SC13G
      - name: year
        in: query
        schema:
          type: integer
      - name: limit
        in: query
        schema:
          type: integer
          default: 20
      - name: offset
        in: query
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: List of SEC filings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecFilingList'
components:
  schemas:
    SecFiling:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
          - 10-K
          - 10-Q
          - 8-K
          - DEF14A
          - SC13G
        filingDate:
          type: string
          format: date
        periodOfReport:
          type: string
        description:
          type: string
        secUrl:
          type: string
        documentUrl:
          type: string
    SecFilingList:
      type: object
      properties:
        total:
          type: integer
        offset:
          type: integer
        limit:
          type: integer
        filings:
          type: array
          items:
            $ref: '#/components/schemas/SecFiling'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key