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

# Public source readiness

> Aggregate contract and recorded execution coverage, not an exhaustive live source test.



## OpenAPI

````yaml /openapi/apiosk-api.json get /v1/source-readiness
openapi: 3.1.0
info:
  title: Apiosk API
  version: 2.0.0
  description: >-
    Buy verifiable data per call with an organisation API key. Discover sources,
    run one directly, or let Apiosk plan across sources. Amounts are USD; every
    amount carries an exact micro-USD integer.
servers:
  - url: https://gateway.apiosk.com
security:
  - apiKey: []
paths:
  /v1/source-readiness:
    get:
      summary: Public source readiness
      description: >-
        Aggregate contract and recorded execution coverage, not an exhaustive
        live source test.
      operationId: sourceReadiness
      responses:
        '200':
          description: Readiness snapshot
          content:
            application/json:
              schema:
                type: object
                properties:
                  audit_version:
                    type: integer
                  assessed_at:
                    type: string
                    format: date-time
                  notice:
                    type: string
                  sources:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
                  providers:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
        '503':
          description: catalog_unavailable
      security: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: 'An organisation API key: Authorization: Bearer apk_org_live_…'

````