Standard Metrics information-requests API

The information-requests API from Standard Metrics — 1 operation(s) for information-requests.

Operations 1

GET /information-requests/ Get information requests #

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/standard-metrics-information-requests-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

standard-metrics-information-requests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OAuth Token budgets Information Requests API
  version: 1.0.0
  description: Token endpoint using client credentials flow.
servers:
- url: https://api.standardmetrics.io
tags:
- name: information-requests
paths:
  /information-requests/:
    get:
      tags:
      - information-requests
      summary: Get information requests
      description: 'Retrieve all information requests associated with the firm. Includes company associations and submission status.


        **Permissions:**

        - User must be authenticated via OAuth.

        - User must have access to the information requests.'
      operationId: information-requests_list
      parameters:
      - name: page
        in: query
        description: A page number within the paginated result set.
        schema:
          type: integer
      - name: page_size
        in: query
        description: Number of results to return per page.
        schema:
          type: integer
      - name: name
        in: query
        description: An optional name of the information request to filter by.
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/InformationRequest'
components:
  schemas:
    InformationRequest:
      required:
      - due_date
      - id
      - name
      - period_end_date
      - period_start_date
      type: object
      properties:
        id:
          title: Id
          type: string
        name:
          title: Name
          minLength: 1
          type: string
        due_date:
          title: Due date
          type: string
          format: date
        status:
          title: Status
          type: string
          readOnly: true
        completed_count:
          title: Completed count
          type: integer
          readOnly: true
        in_progress_count:
          title: In progress count
          type:
          - integer
          - 'null'
          readOnly: true
        not_started_count:
          title: Not started count
          type:
          - integer
          - 'null'
          readOnly: true
        partially_complete_count:
          title: Partially complete count
          type:
          - integer
          - 'null'
          readOnly: true
        past_due_count:
          title: Past due count
          type:
          - integer
          - 'null'
          readOnly: true
        period:
          title: Period
          type: string
          readOnly: true
        period_start_date:
          title: Period start date
          type: string
          format: date
        period_end_date:
          title: Period end date
          type: string
          format: date
        requested_documents:
          type: array
          readOnly: true
          items:
            required:
            - description
            type: object
            properties:
              id:
                title: Id
                type: string
                readOnly: true
              name:
                title: Name
                type: string
                readOnly: true
              description:
                title: Description
                minLength: 1
                type: string
              optional:
                title: Optional
                type: boolean
        requested_metrics:
          type: array
          readOnly: true
          items:
            type: object
            properties:
              id:
                title: Id
                type: string
                readOnly: true
              name:
                title: Name
                type: string
                readOnly: true
              description:
                title: Description
                type: string
                readOnly: true
              optional:
                title: Optional
                type: boolean
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic