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

# List survey exports

> Returns metadata and download URLs for all export formats associated with a survey: CSV results, PDF reports, and PNG screenshots.

The `csv` block points to the PickFu API CSV proxy endpoint and is only available once the survey has been published and completed. PDF and PNG entries are returned for each rendered language.

Rate limit: 30 requests per minute per caller.



## OpenAPI

````yaml /api-reference/openapi.json get /surveys/{id}/exports
openapi: 3.1.0
info:
  title: PickFu API
  version: 1.0.0
  description: >-
    The PickFu API enables programmatic access to create surveys, retrieve
    results, and integrate PickFu into your workflows.


    ## Overview


    PickFu helps you get instant consumer feedback through surveys. With the
    API, you can:


    - Create surveys programmatically

    - Retrieve survey results and respondent data

    - Target specific audiences with demographic traits

    - Integrate PickFu into your product development workflow


    ## Rate Limits


    Selected endpoints (currently the CSV export endpoints) enforce per-caller
    rate limits and return `429 Too Many Requests` when exceeded. See each
    endpoint description for its specific budget.


    ## Authentication


    All API requests require a Bearer token — either an API key or an OAuth 2.0
    access token. See the [Authentication
    guide](https://www.pickfu.com/docs/developers/authentication) for details.
  contact:
    name: PickFu Support
    email: support@pickfu.com
    url: https://www.pickfu.com
servers:
  - url: https://api.pickfu.com/v1
    description: Production
  - url: https://api.pickfu-sandbox.com/v1
    description: Sandbox
security:
  - bearerAuth: []
tags:
  - name: Surveys
    description: >-
      Create, retrieve, update, and publish surveys. Surveys are the core
      resource — each contains one or more questions with answer options.
  - name: Responses
    description: >-
      Retrieve individual responses (answers) for a survey, with pagination and
      per-question filtering.
  - name: Tags
    description: Organize surveys with tags. Tags are scoped to your team/account.
  - name: Projects
    description: >-
      Organize surveys into projects. Projects group related surveys and can be
      bookmarked or archived.
  - name: Traits
    description: >-
      Audience targeting and reporting traits used to reach specific
      demographics and segment survey results.
  - name: Playbooks
    description: >-
      Discover and retrieve step-by-step research playbooks. Each playbook is a
      structured sequence of polls designed for a specific research goal.
  - name: Help
    description: Search the PickFu help center for articles and guides.
  - name: Media
    description: >-
      Generate images from text prompts and upload media files to the PickFu
      CDN.
paths:
  /surveys/{id}/exports:
    get:
      tags:
        - Surveys
      summary: List survey exports
      description: >-
        Returns metadata and download URLs for all export formats associated
        with a survey: CSV results, PDF reports, and PNG screenshots.


        The `csv` block points to the PickFu API CSV proxy endpoint and is only
        available once the survey has been published and completed. PDF and PNG
        entries are returned for each rendered language.


        Rate limit: 30 requests per minute per caller.
      operationId: getSurveyExports
      parameters:
        - schema:
            type: string
          in: path
          name: id
          required: true
          description: Survey GUID
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      csv:
                        type: object
                        properties:
                          available:
                            type: boolean
                            description: >-
                              Whether the CSV export is available (the survey
                              must be published and complete)
                          version:
                            type: string
                            nullable: true
                            description: >-
                              CSV export version. v2 is the default and most
                              recent format.
                          url:
                            type: string
                            nullable: true
                            description: >-
                              Authenticated URL to download the CSV results
                              bytes via the PickFu API.
                      pdf:
                        type: array
                        description: >-
                          PDF report exports. Each entry corresponds to one
                          rendered language.
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              description: Direct CDN URL to the PDF file
                            language:
                              type: string
                              description: Language code (ISO 639-1) for this PDF
                      png:
                        type: array
                        description: >-
                          PNG screenshot exports of the results page. Each entry
                          is one rendered language and may be a preview
                          thumbnail.
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              description: Direct CDN URL to the PNG file
                            language:
                              type: string
                              description: Language code (ISO 639-1) for this PNG
                            isPreview:
                              type: boolean
                              description: >-
                                True when the PNG is a preview thumbnail rather
                                than a full-resolution screenshot
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        OAuth2 access token obtained via the authorization flow. Include in the
        Authorization header as: `Bearer {access_token}`

````