cURL
curl --request GET \ --url https://www.postable.com/api/v1/projects \ --header 'Authorization: Bearer <token>'
{ "data": [ { "uuid": "<string>", "card_id": 123, "name": "<string>", "display_name": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "is_box": true, "is_postcard": true, "category_id": 123, "occasion_id": 123, "image_url": "<string>", "thumbnail_url": "<string>" } ], "next_cursor": "<string>" }
Retrieve a paginated list of all projects
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Number of results per page
Cursor for pagination
A cursor-paginated list of projects
Show child attributes