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

# Browse source endpoints

> Compact, paginated endpoint index across one source or the Pulse Network group. A listed endpoint can be discovery-only; endpoint.planner_available marks runtime-accepted contracts. Requires sources:read.



## OpenAPI

````yaml /openapi/apiosk-api.json get /v2/sources/{source_id}/endpoints
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/sources/{source_id}/endpoints:
    get:
      summary: Browse source endpoints
      description: >-
        Compact, paginated endpoint index across one source or the Pulse Network
        group. A listed endpoint can be discovery-only;
        endpoint.planner_available marks runtime-accepted contracts. Requires
        sources:read.
      operationId: listSourceEndpoints
      parameters:
        - name: source_id
          in: path
          required: true
          schema:
            type: string
            maxLength: 100
            pattern: ^[A-Za-z0-9-]+$
        - name: search
          in: query
          schema:
            type: string
            maxLength: 200
        - name: offset
          in: query
          schema:
            type: integer
            minimum: 0
            maximum: 10000
            default: 0
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 40
      responses:
        '200':
          description: Endpoint page
          content:
            application/json:
              schema:
                type: object
                properties:
                  total:
                    type: integer
                  next_offset:
                    type:
                      - integer
                      - 'null'
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        slug:
                          type: string
                        listing:
                          type: string
                        endpoint:
                          type: object
                          properties:
                            candidate_id:
                              type: string
                              format: uuid
                            method:
                              type: string
                            path:
                              type: string
                            description:
                              type: string
                            category:
                              type:
                                - string
                                - 'null'
                            tags:
                              type: array
                              items:
                                type: string
                            use_cases:
                              type: array
                              items:
                                type: string
                            planner_available:
                              type: boolean
        '400':
          description: invalid_query in a Gateway v2 error envelope
        '401':
          description: Authentication required
        '403':
          description: insufficient_scope
        '429':
          description: busy
        '503':
          description: catalog_unavailable
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: 'An organisation API key: Authorization: Bearer apk_org_live_…'

````