GET
/
v1
/
products
/
{id}
Get product by id
curl --request GET \
  --url https://api.hofj.com/v1/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "slug": "<string>",
    "title": "<string>",
    "shortDescription": "<string>",
    "description": "<string>",
    "archived": true,
    "channelId": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "publishedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
default:dev-internal-api-key
required

Use Authorization: Bearer <access_token> from POST /v1/oauth/token, or Authorization: Bearer <api_key>. Dev-only example key (do not use in production): see repository README.

Path Parameters

id
string
required

Query Parameters

brand
string

Same as list: distribution channel brand / domain. If omitted, CONTENT_DEFAULT_CHANNEL_DOMAIN must be set.

locale
string

Locale (e.g. it).

Response

Product

data
object