Skip to main content
GET
/
projects
List projects
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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

per_page
integer
default:20

Number of results per page

cursor
string

Cursor for pagination

Response

200 - application/json

A cursor-paginated list of projects

data
object[]
next_cursor
string | null
I