Quickstart
Create a token and make your first Claret API call in five minutes.
Last updated
Was this helpful?
Was this helpful?
{
"message": "Units of measure retrieved.",
"data": {
"uoms": [
{ "id": 1, "name": "Liter", "abbr": "L" },
{ "id": 2, "name": "Kilogram", "abbr": "kg" }
]
},
"meta": {
"credits": { "cost": 1, "remaining": 9999999 },
"pagination": { "per_page": 100, "total": 2 }
},
"links": {}
}curl "https://plan.claret.app/{tenant}/api/v1/items?filter[name]=Chardonnay&sort=name&per_page=10" \
-H "Authorization: Bearer {token}" \
-H "Accept: application/json"