API
Get Lists (Pro)

Get Lists (Pro Feature)

Get a paginated list of lists via get to the /api/lists endpoint.

Example Response

{
 
  "data": [{
    "id": "1177c188-4ebe-4380-81da-deb496ef4179",
    "name": "A list",
    "description": "It's very nice",
    "inserted_at": "2024-09-03T13:47:17Z",
    "updated_at": "2024-09-03T13:47:17Z"
  }],
  "meta": {
    "current_page": 1,
    "page_size": 12,
    "previous_page": null,
    "total_count": 1,
    "total_pages": 1
  }
}

Path Parameters

ParamTypeRequiredNotes
iduuidyesThe lists uuid

id (required)

type: uuid

Query Parameters

ParamTypeRequiredNotes
pageintnoThe page you would like to request.
page_sizeintnoHow many records should be returned per page. Default 12 max 100.

page

type: int

The page you would like to request.

page_size

type: int

How many records should be returned per page. Default 12 max 100.