Product
Get published digital products
Get details of all published digital products with this API
Rate limit: Maximum 15 requests in a window of 1m.
POST
/
public
/
get-all-products
curl --request POST \
--url https://backend.codedamn.com/api/public/get-all-products \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"fermionSchoolId": "<string>",
"filterByType": [
"DownloadableProduct"
]
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"products": [
{
"fermionDigitalProductId": "<string>",
"type": "DownloadableProduct",
"name": "<string>",
"slug": "<string>",
"link": "<string>",
"thumbnailUrl": "<string>"
}
]
}
}
}
]
Body
application/json
API Request Body
The body is of type object
.
Response
200 - application/json
API Response Body
The response is of type object[]
.
curl --request POST \
--url https://backend.codedamn.com/api/public/get-all-products \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"data": {
"fermionSchoolId": "<string>",
"filterByType": [
"DownloadableProduct"
]
}
}
]
}'
[
{
"output": {
"status": "ok",
"data": {
"products": [
{
"fermionDigitalProductId": "<string>",
"type": "DownloadableProduct",
"name": "<string>",
"slug": "<string>",
"link": "<string>",
"thumbnailUrl": "<string>"
}
]
}
}
}
]
Assistant
Responses are generated using AI and may contain mistakes.