GET
/
v1
/
catalog
/
blends
/
{id}
curl --request GET \
  --url https://api.roastify.app/v1/catalog/blends/{id} \
  --header 'x-api-key: <api-key>'
{
  "id": "clyd67824rn3f78g0f8j9",
  "name": "12oz Coffee Bag",
  "description": "<string>",
  "isDecaf": false,
  "roastLevel": "Medium"
}

Authorizations

x-api-key
string
header
required

The API key to authenticate requests provided by Roastify. If you do not have an API key, please contact [email protected]

Path Parameters

id
string
required

The Id of the resource

Minimum length: 1
Example:

"clyd67824rn3f78g0f8j9"

Response

200
application/json
Get a blend by Id
id
string
required

The id of the blend

Example:

"clyd67824rn3f78g0f8j9"

name
string
required

The name of the blend

Example:

"12oz Coffee Bag"

description
string
required

The description of the blend

isDecaf
boolean
required

Is the blend decaf

Example:

false

roastLevel
string
required

The roast level of the blend

Example:

"Medium"