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

Parameters

No parameters.

Returns

Returns a paginated object of blinds owned by the logged in user if the logged in user is a Platinum Tier member. Returns a 403 if the logged in user is not a Platinum Tier member.
  curl -H "Authorization: $ACCESS_TOKEN" \
    --request GET \
    --url https://api.onlydrams.app/api/v1/blinds
{
  "total":1,
  "has_more":false,
  "data": [
    {
      "id":"1900e270-a68b-4379-ae33-a4124149debb",
      "name":"First!",
      "number_of_bottles":4,
      "proof_low":null,
      "proof_high":null,
      "price_low":null,
      "price_high":null,
      "types":null,
      "distillery_ids":null,
      "user": User Object
    }
  ]
}