Skip to main content
GET
/
v1
/
products
/
{id}
Retrieve a product
curl --request GET \
  --url https://api.kyren.top/v1/products/{id} \
  --header 'x-api-key: <api-key>'
{
  "code": 0,
  "message": "success",
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "image": "<string>",
    "price": 123,
    "currency": "<string>",
    "status": "ACTIVE",
    "metadata": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

x-api-key
string
header
required

Your API key. Use kyren_live_* for production and kyren_test_* for testing.

Path Parameters

id
string
required

The unique identifier of the resource

Response

The product object

code
integer
Example:

0

message
string
Example:

"success"

data
object