> ## 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.

# List fixed workflows and country coverage

> Free. Requires sources:read. Uses the same recipes as the App. Availability reflects planning, not paid result validation.



## OpenAPI

````yaml /openapi/apiosk-api.json get /v2/ask/workflows
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:
  /v2/ask/workflows:
    get:
      tags:
        - Ask
      summary: List fixed workflows and country coverage
      description: >-
        Free. Requires sources:read. Uses the same recipes as the App.
        Availability reflects planning, not paid result validation.
      operationId: listAskWorkflows
      responses:
        '200':
          description: Workflow definitions and coverage
          content:
            application/json:
              schema:
                type: object
                required:
                  - workflows
                  - notice
                properties:
                  notice:
                    type: string
                  workflows:
                    type: array
                    items:
                      type: object
                      required:
                        - slug
                        - fields
                        - available
                        - country_coverage
                      properties:
                        slug:
                          type: string
                        name:
                          type: string
                        description:
                          type: string
                        fields:
                          type: array
                          items:
                            type: object
                            additionalProperties: true
                        available:
                          type: boolean
                        country_coverage:
                          type: array
                          items:
                            $ref: '#/components/schemas/WorkflowCountryCoverage'
                        limitations:
                          type: array
                          items:
                            type: string
                      additionalProperties: true
        '401':
          description: Missing or invalid authentication
        '403':
          description: Missing sources:read scope
components:
  schemas:
    WorkflowCountryCoverage:
      type: object
      required:
        - country
        - identity
        - screening
        - filings
        - procurement
        - available
      properties:
        country:
          type: string
        identity:
          type: string
        screening:
          type: string
        filings:
          type: string
        procurement:
          type: string
        available:
          type: boolean
          description: >-
            The country recipe can be planned; not proof of complete or current
            records.
        unavailable_reason:
          type: string
          nullable: true
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: 'An organisation API key: Authorization: Bearer apk_org_live_…'

````