cURL
curl --request GET \ --url https://api.pickfu.com/v1/projects/{id} \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "id": "<string>", "name": "<string>", "description": "<string>", "goal": "<string>", "archived": true, "bookmarked": true, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "url": "<string>", "user": "<string>", "surveys": [ { "guid": "<string>", "question": "<string>", "type": "<string>", "state": "<string>", "respondentsAmount": 123 } ] } }
Retrieves a project by its unique GUID, including lightweight survey summaries.
OAuth2 access token obtained via the authorization flow. Include in the Authorization header as: Bearer {access_token}
Bearer {access_token}
Project GUID
Default Response
Show child attributes