GET
/
v1
/
catalog
/
blends
curl --request GET \
  --url https://api.roastify.app/v1/catalog/blends \
  --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]

Response

200
application/json
Get all availalbe blends in the catalog
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"