Skip to main content
GET
/
surveys
/
{id}
/
exports
List survey exports
curl --request GET \
  --url https://api.pickfu.com/v1/surveys/{id}/exports \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "csv": {
      "available": true,
      "version": "<string>",
      "url": "<string>"
    },
    "pdf": [
      {
        "url": "<string>",
        "language": "<string>"
      }
    ],
    "png": [
      {
        "url": "<string>",
        "language": "<string>",
        "isPreview": true
      }
    ]
  }
}

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.

Authorizations

Authorization
string
header
required

OAuth2 access token obtained via the authorization flow. Include in the Authorization header as: Bearer {access_token}

Path Parameters

id
string
required

Survey GUID

Response

Default Response

data
object