Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api.docs.onlydrams.app/llms.txt

Use this file to discover all available pages before exploring further.

Returns a paginated list of Lists.

Parameters

page
int
The page number. Default is 1.
per
int
The amount of records returned per page. Default is 20.

Returns

Returns a list of users, and returns an error otherwise.
  curl -H "Authorization: $ACCESS_TOKEN" \
    --request GET \
    --url https://api.onlydrams.app/api/v1/users/:id/lists
{
	"total": 1,
	"has_more": false,
	"data": [
		{
			"id": "a921ac5f-dd58-4145-becb-481833a88b1c",
			"name": "New list",
			"item_count": 2
		}
	]
}