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.

This endpoint only allows for the updating of the blind instance’s time_to_complete value. All other updates happen to its contained Blind Bottles.

Parameters

time_to_complete
integer
required
The time in seconds it took to complete the blind

Returns

Returns a single Blind Instance object if one is found and updated for the passed params. If none is round, an error will be returned instead.
  curl -H "Authorization: $ACCESS_TOKEN" \
    --request PATCH \
    --url https://api.onlydrams.app/api/v1/blinds/:blind_id/blind_instances/:id?time_to_complete=12
  {
    "id":"faf32869-8cfe-458c-8f1f-032d5c5c4f2d",
    "time_to_complete":12,
    "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
    }
  ]
}