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 blind instances.

Parameters

blind_id
uuid
The id of the blind whose instances you’re trying to find

Returns

Returns a paginated object of blind instances owned by the logged in user if the logged in user is a Platinum Tier member. If prefixed with the blind id, will return those blind instances associated with that blind and owned by the logged in user. 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/blind_instances
  {
    "total":1,
    "has_more":false,
    "data":[
      {
        "id":"faf32869-8cfe-458c-8f1f-032d5c5c4f2d",
        "time_to_complete":null,
        "blind":
          {
            "id":"5f0b220b-d7a4-4080-96e4-c9b2dd04f435",
            "name":"Nyarlathotep",
            "number_of_bottles":4,
            "proof_low":null,
            "proof_high":null,
            "price_low":null,
            "price_high":null,
            "types":null,
            "distillery_ids":null
          },
        "blind_bottles":[
          {
            "id":"ed7faf81-f35d-431b-9f65-c9ba55cf7bde",
            "nose_rating":null,
            "pallette_rating":null,
            "bottle":
              {
                "id":"0ab8662c-093c-4ef1-887f-4bc1ca55af99",
                "price":5.83,
                "secondary":0.0,
                "secondary_outer_bound":0.0,
                "enhanced_pricing":false,
                "rarity":"common",
                "size":"750",
                "image_url":null,
                "juice":
                  {
                    "id":"75898894-46ef-433c-bb52-73ef92a11f14",
                    "name":"Enchanted Isles",
                    "age":18,
                    "proof":40.4,
                    "variety":"scotch",
                    "origin":"North Carolina",
                    "release":null,
                    "rarity":"common",
                    "sizes":[
                      {
                        "id":"0ab8662c-093c-4ef1-887f-4bc1ca55af99",
                        "size":"750",
                        "price":5.83,
                        "secondary":0.0,
                        "secondary_outer_bound":0.0,
                        "rarity":"common",
                        "image_url":null,
                        "sku":"756432751897",
                        "optionals":[]
                      }
                    ],
                    "distillery":
                      {
                        "id":"4ac1f1f3-908b-4c6a-ab33-96a587919b0b",
                        "name":"willett"
                      },
                    "review_count":0,
                    "average_rating":0,
                    "territories":[],
                    "mashbill":[],
                    "months_old":null,
                    "days_old":null,
                    "pickable":false,
                    "finish_cask_type":[],
                    "notes":null
                  },
                "optionals":[],
                "batches":[],
                "vintages":[]
              },
            "guessed_bottle":null,
            "correct":false
        }
      ]
    }
  ]
}