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 list of all infinity bottles belonging to a specific user.
Authentication
Requires a valid access token.
URL Parameters
The ID of the user whose infinity bottles you want to retrieve.
Returns
Returns an array of infinity bottles. Each bottle includes basic information suitable for list display.
curl -X GET https://api.onlydrams.app/api/v1/users/123/infinity_bottles \
-H "Authorization: Bearer $ACCESS_TOKEN"
[
{
"id": "uuid",
"name": "My First Infinity",
"created_at": "2024-01-01"
},
{
"id": "uuid2",
"name": "Bourbon Blend",
"created_at": "2024-02-01"
}
]