GET https://api.speccheckrx.com/v1/catalogs/addons
Authentication
This endpoint requires bearer token authentication.
Your bearer token in the format Bearer <token>.
The email address of the user making the request.Must exactly match the email address used to log in to the SpecCheck Dashboard.
Parameters
The ID of the lab for this request.
The lab account number for this request.
The ID of the lens style.
The ID of the lens material.
Returns
Returns an object with a data object containing coats, tints, and colors.
The unique identifier for the coat.
The type of coat. Returns null when not set.Possible enum values:
The unique identifier for the color.
Tints available for the lab.
{
"data": {
"coats": [
{
"id": "coat_123",
"name": "Anti-Reflective Coating",
"type": "ar"
}
],
"colors": [
{
"id": "color_123",
"name": "Crystal Gray"
}
],
"tints": ["Gray", "Brown"]
}
}
curl "https://api.speccheckrx.com/v1/catalogs/addons?lab={{LAB_ID}}&account_number={{ACCOUNT_NUMBER}}&style={{STYLE_ID}}&material={{MATERIAL_ID}}" \
-H "Authorization: Bearer {{ACCESS_TOKEN}}" \
-H "User-Email: {{USER_EMAIL}}"