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

# List ingested reference sources

> Returns one entry per source in the registry — eager-ingested and lazy-indexed alike — with aggregate feature count, country coverage, SPDX license, category, and bounding box. Subscription-gated under ``BILLING_ENABLED=true``.



## OpenAPI

````yaml /openapi.json get /v1/sources
openapi: 3.0.3
info:
  description: >-
    Geographic compliance API — evaluates polygons against authoritative
    environmental and regulatory datasets and returns deterministic, audit-ready
    verdicts.
  title: Attestly API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/sources:
    get:
      tags:
        - Catalog
      summary: List ingested reference sources
      description: >-
        Returns one entry per source in the registry — eager-ingested and
        lazy-indexed alike — with aggregate feature count, country coverage,
        SPDX license, category, and bounding box. Subscription-gated under
        ``BILLING_ENABLED=true``.
      operationId: list_sources_v1_sources_get
      parameters:
        - description: >-
            When ``true``, surface sources whose system-wide kill switch is on.
            Defaults to ``false`` so disabled sources are hidden from the
            catalog (consistent with the runtime endpoints, which already skip
            them).
          in: query
          name: include_disabled
          required: false
          schema:
            default: false
            description: >-
              When ``true``, surface sources whose system-wide kill switch is
              on. Defaults to ``false`` so disabled sources are hidden from the
              catalog (consistent with the runtime endpoints, which already skip
              them).
            title: Include Disabled
            type: boolean
        - description: >-
            Filter to a single ``source_registry.kind`` value. ``leaf`` returns
            regular spatial sources, ``group`` returns virtual fan-outs,
            ``subject_register`` returns non-spatial identifier sources
            (sanctions lists, slavery blacklists, …). Omit to receive rows of
            every kind.
          in: query
          name: kind
          required: false
          schema:
            description: >-
              Filter to a single ``source_registry.kind`` value. ``leaf``
              returns regular spatial sources, ``group`` returns virtual
              fan-outs, ``subject_register`` returns non-spatial identifier
              sources (sanctions lists, slavery blacklists, …). Omit to receive
              rows of every kind.
            enum:
              - leaf
              - group
              - subject_register
            nullable: true
            title: Kind
            type: string
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
          description: Malformed request body.
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
          description: Authentication required.
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
          description: Authorization failed.
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
          description: Resource not found.
        '409':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
          description: Resource conflict.
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
          description: Validation Error
        '429':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
          description: Quota or rate limit exceeded.
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetail'
          description: Unexpected server error.
      security:
        - HTTPBearer: []
components:
  schemas:
    ProblemDetail:
      properties:
        detail:
          type: string
        instance:
          type: string
        status:
          type: integer
        title:
          type: string
        type:
          format: uri
          type: string
      required:
        - type
        - title
        - status
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````