products
Get product by ID
Retrieve detailed information about a specific product by its ID.
GET
/
v0
/
products
/
{productId}
curl --request GET \
--url https://api.fungies.io/v0/products/{productId} \
--header 'x-fngs-public-key: <api-key>'
{
"status": "<string>",
"data": {
"product": {
"object": "product",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "DigitalDownload",
"internalId": null,
"name": "",
"description": "",
"developer": null,
"publisher": null,
"pegiRating": null,
"releaseDate": null,
"systems": null,
"genres": null,
"status": "DRAFT",
"customFields": null
},
"offers": [
{
"object": "offer",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"internalId": null
}
]
}
}
Authorizations
Path Parameters
GET /v0/products/:productId Parameter
Response
200
application/json
GET /v0/products/:productId Positive response
The response is of type object
.
curl --request GET \
--url https://api.fungies.io/v0/products/{productId} \
--header 'x-fngs-public-key: <api-key>'
{
"status": "<string>",
"data": {
"product": {
"object": "product",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "DigitalDownload",
"internalId": null,
"name": "",
"description": "",
"developer": null,
"publisher": null,
"pegiRating": null,
"releaseDate": null,
"systems": null,
"genres": null,
"status": "DRAFT",
"customFields": null
},
"offers": [
{
"object": "offer",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"internalId": null
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.