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 Bottles.

Parameters

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

Returns

Returns a paginated list of list collectables.
  curl -H "Authorization: $ACCESS_TOKEN" \
    --request GET \
    --url https://api.onlydrams.app/api/v1/users/:user_id/lists/:id/bottles
{
	"total": 1,
	"has_more": false,
	"data": [
		{
			"id": "1060a74d-b90a-45ed-b285-2dc751e9bffe",
			"name": "Little Book Chapter 8: Path Not Taken",
			"rating": 1.5
		}
	]
}