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.

Retrieves detailed information about a specific infinity bottle including its contents and history. Authentication
Requires a valid access token.
URL Parameters
id
string
required
The ID of the user who owns the infinity bottle.
bottle_id
string
required
The ID of the infinity bottle to retrieve.
Returns Returns detailed information about the infinity bottle including its contents, modifications, and current stats.
curl -X GET https://api.onlydrams.app/api/v1/users/123/infinity_bottles/456 \
     -H "Authorization: Bearer $ACCESS_TOKEN"
{
  "id": "uuid",
  "name": "My First Infinity",
  "total_volume": 50,
  "created_on": "January 2024",
  "estimated_proof": 95.5,
  "modifications": [
    {
      "action": "add",
      "amount": 50,
      "timestamp": "January 2024",
      "name": "Buffalo Trace",
      "variety": "bourbon"
    }
  ]
}