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

# List Public Filings

> Returns published Token Transparency filings grouped by project. This endpoint does not require an API key.



## OpenAPI

````yaml /openapi.json get /v1/ttf/filings
openapi: 3.0.0
info:
  title: Blockworks API
  description: ''
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.blockworks.com
security:
  - x-api-key: []
tags: []
paths:
  /v1/ttf/filings:
    get:
      tags:
        - ttf-public
      summary: List Public Filings
      description: >-
        Returns published Token Transparency filings grouped by project. This
        endpoint does not require an API key.
      operationId: PublicFilingsController_list_v1
      parameters:
        - name: project_slugs
          required: false
          in: query
          description: >-
            Project slugs to filter by (at most one of project_slugs or tickers;
            omit both to list all projects with published filings)
          schema:
            maxItems: 50
            type: array
            items:
              type: string
              maxLength: 100
        - name: tickers
          required: false
          in: query
          description: >-
            Asset tickers to filter by (at most one of project_slugs or tickers;
            omit both to list all projects with published filings)
          schema:
            maxItems: 50
            type: array
            items:
              type: string
              maxLength: 20
        - name: latest
          required: false
          in: query
          description: >-
            When true, return only the most recent filing per filing type for
            each project
          schema:
            type: boolean
            default: false
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicFilingsPageResponse'
              example:
                page: 1
                data:
                  - project_slug: celo
                    protocol_name: Celo
                    protocol_ticker: CELO
                    filings:
                      - filing_id: de86b664-f412-4ae6-ba76-2125fedfbd0a
                        filing_type: B1
                        completion_label: partial - 2 gaps
                        filing_version: '1.3'
                        date_filed: '2026-08-18'
                        static_url: >-
                          https://blockworks.com/token-transparency/filing/de86b664-f412-4ae6-ba76-2125fedfbd0a
                        filing_status: current
                        provenance: issuer-filed
                  - project_slug: curve
                    protocol_name: Curve
                    protocol_ticker: CRV
                    filings:
                      - filing_id: 27d01bc9-3cb4-458e-92e7-03a54169a561
                        filing_type: B1
                        completion_label: complete
                        filing_version: '1.3'
                        date_filed: '2026-07-23'
                        static_url: >-
                          https://blockworks.com/token-transparency/filing/27d01bc9-3cb4-458e-92e7-03a54169a561
                        filing_status: current
                        provenance: issuer-filed
                total: 2
        '400':
          description: Bad Request
      security: []
components:
  schemas:
    PublicFilingsPageResponse:
      type: object
      properties:
        page:
          type: integer
        data:
          type: array
          items:
            $ref: '#/components/schemas/PublicProjectGroupResponse'
        total:
          type: integer
          description: Number of project groups returned
      required:
        - page
        - data
        - total
    PublicProjectGroupResponse:
      type: object
      properties:
        project_slug:
          type: string
          description: Project slug
        protocol_name:
          type: string
          description: Project display name
        protocol_ticker:
          type: string
          nullable: true
          description: Asset ticker, null when the project has no listed asset
        filings:
          type: array
          items:
            $ref: '#/components/schemas/PublicFilingResponse'
      required:
        - project_slug
        - protocol_name
        - protocol_ticker
        - filings
    PublicFilingResponse:
      type: object
      properties:
        filing_id:
          type: string
          description: Unique filing identifier
        filing_type:
          type: string
          description: Filing type, e.g. B1
        completion_label:
          type: string
          description: Completion summary, e.g. "complete" or "partial - 2 gaps"
        filing_version:
          type: string
          description: Version of the filing schema the filing was submitted against
        date_filed:
          type: string
          description: Publication date (UTC, YYYY-MM-DD)
        static_url:
          type: string
          description: Permalink to the filing on blockworks.com
        filing_status:
          type: string
          enum:
            - current
            - stale
          description: >-
            Whether the filing is current or stale (superseded or past its
            staleness deadline)
        provenance:
          type: string
          description: How the filing was produced, e.g. issuer-filed
      required:
        - filing_id
        - filing_type
        - completion_label
        - filing_version
        - date_filed
        - static_url
        - filing_status
        - provenance
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````