> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequency.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Get latest financial statements collection status

> Return the latest statements collection run stats.



## OpenAPI

````yaml /api/openapi.json get /api/internal/fmp/statements/status
openapi: 3.1.0
info:
  title: Sequency Graph API
  description: >

    # Sequency Graph-Native Trading API


    Graph-native API for trading intelligence, built on FalkorDB.


    ## Features


    - **Screener**: Filter stocks using graph-native queries with relationship
    expansion

    - **Stock Detail**: Complete stock context with all relationships

    - **Confluence Scoring**: Setup quality assessment with weighted components

    - **Strategy Matching**: Find matching options strategies via graph
    traversal

    - **Market Context**: Current market-wide context for trading decisions


    ## Data Sources


    All data is sourced from the FalkorDB knowledge graph, populated by:

    - Pattern detector (Go) - Technical indicators, patterns

    - Graph sync service - Levels, volume profiles, news, day classification
  version: 1.0.0
servers: []
security: []
paths:
  /api/internal/fmp/statements/status:
    get:
      tags:
        - Internal
      summary: Get latest financial statements collection status
      description: Return the latest statements collection run stats.
      operationId: get_statements_collection_status_api_internal_fmp_statements_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FMPStatementsStatusResponse'
components:
  schemas:
    FMPStatementsStatusResponse:
      properties:
        in_progress:
          type: boolean
          title: In Progress
        run_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Run Id
        run_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Run Type
        symbols_requested:
          anyOf:
            - type: integer
            - type: 'null'
          title: Symbols Requested
        symbols_processed:
          anyOf:
            - type: integer
            - type: 'null'
          title: Symbols Processed
        symbols_success:
          anyOf:
            - type: integer
            - type: 'null'
          title: Symbols Success
        symbols_failed:
          anyOf:
            - type: integer
            - type: 'null'
          title: Symbols Failed
        total_api_calls:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Api Calls
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
        error_details:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Error Details
        started_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Completed At
      type: object
      required:
        - in_progress
      title: FMPStatementsStatusResponse
      description: Status of the latest statements collection run.

````