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

# Get CSV export

> Gets a CSV export by UUID



## OpenAPI

````yaml /openapi-specs/pro-api-v11.yaml get /v2/csv-exports/{uuid_param}
openapi: 3.0.0
info:
  contact:
    email: info@blockscout.com
  title: Blockscout
  version: 11.0.3
servers:
  - url: http://localhost/api
    variables: {}
security: []
tags:
  - name: blocks
  - name: transactions
  - name: addresses
  - name: internal-transactions
  - name: tokens
  - name: token-transfers
  - name: smart-contracts
  - name: config
  - name: main-page
  - name: search
  - name: stats
  - name: csv-export
  - name: account-abstraction
  - name: withdrawals
  - name: advanced-filters
  - name: arbitrum
  - name: legacy
  - name: optimism
  - name: mud
  - name: celo
  - name: scroll
  - name: zilliqa
paths:
  /v2/csv-exports/{uuid_param}:
    get:
      tags:
        - csv-export
      summary: Get CSV export
      description: Gets a CSV export by UUID
      operationId: BlockScoutWeb.API.V2.CsvExportController.get_csv_export
      parameters:
        - description: UUID for CSV export
          in: path
          name: uuid_param
          required: true
          schema:
            format: uuid
            pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
            type: string
            x-struct: null
            x-validate: null
        - description: API key for rate limiting or for sensitive endpoints
          in: query
          name: apikey
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
        - description: Secret key for getting access to restricted resources
          in: query
          name: key
          required: false
          schema:
            type: string
            x-struct: null
            x-validate: null
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
          description: Status of CSV export.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundResponse'
          description: Not Found
      callbacks: {}
components:
  schemas:
    Response:
      properties:
        expires_at:
          format: date-time
          nullable: true
          type: string
          x-struct: null
          x-validate: null
        file_id:
          nullable: true
          type: string
          x-struct: null
          x-validate: null
        status:
          enum:
            - pending
            - completed
            - failed
          nullable: false
          type: string
          x-struct: null
          x-validate: null
      title: Response
      type: object
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.CSVExport.Response
      x-validate: null
    NotFoundResponse:
      description: Response returned when the requested resource is not found
      properties:
        message:
          description: Error message indicating the requested resource was not found
          example: Resource not found
          type: string
          x-struct: null
          x-validate: null
      title: NotFoundResponse
      type: object
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.ErrorResponses.NotFoundResponse
      x-validate: null

````