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.
Base URL
All API requests should be made to:Authentication
All endpoints require a Bearer token in the Authorization header — either an API key or an OAuth access token:Request Format
- All request bodies must be JSON
- Set the
Content-Type: application/jsonheader for POST/PUT/PATCH requests - All responses are returned as JSON
Response Format
Successful responses include the requested data:Error Handling
Error responses include anerror type and human-readable message:
HTTP Status Codes
| Status Code | Description |
|---|---|
200 | Success |
201 | Created - resource successfully created |
400 | Bad Request - invalid request body or parameters |
401 | Unauthorized - missing or invalid access token |
403 | Forbidden - insufficient permissions |
404 | Not Found - resource doesn’t exist |
429 | Too Many Requests - rate limit exceeded |
500 | Internal Server Error - something went wrong on our end |
Validation Errors
When request validation fails, the response includes details about what went wrong:Rate Limits
API requests are rate-limited to 100 requests per minute per access token. When you exceed the rate limit, you’ll receive a429 Too Many Requests response:
Pagination
Endpoints that return lists support pagination usingpage and limit query parameters:
Available Endpoints
Surveys
Create, retrieve, publish, and manage surveys.
Responses
Read responses, send follow-up questions, and rate or pin responses.
Tags
Organize surveys with tags.
Projects
Group related surveys into projects.
Traits
Audience targeting and reporting demographics.
Media
Generate images from prompts and upload media to the CDN.
Playbooks
Step-by-step research guides.
Building surveys programmatically
Don’t add a separate “explain your reasoning” question. Every PickFu response already includes a required written explanation — respondents have to type why they picked, ranked, or rated something before they can submit. When you
POST /surveys, just write your real question (e.g. “Which product image makes you more likely to click?”) and the qualitative explanation field comes back on the response automatically. Adding a second question to capture reasoning duplicates data and, in multi-question surveys, costs an extra question slot.Screen-recording surveys are the one exception — the recording itself is the answer, and the spoken response is returned as mediaTranscription rather than explanation. For every other question type the explanation field is populated on each response.GET /surveys/{id}/responses as the explanation field. If you need to dig deeper on a specific respondent’s answer after the survey completes, use POST /surveys/{id}/responses/{responseId}/followup to send them a follow-up question through their PickFu inbox.