Get details of all published digital products with this API
Rate limit: Maximum 15 requests in a window of 1m.
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>"
}
]
}
}
}
]API Request Body
Show child attributes
Show child attributes
Your school ID
1Optionally filter by product type. If provided, only the product types requested will be returned.
DownloadableProduct, Ebook, FermionCourse, FermionContest, OneToOneInstructorCall, LiveEventProduct, FermionBundle API Response Body
Show child attributes
ok Show child attributes
Array of published digital products
Show child attributes
Unique identifier for the digital product
1Type of digital product (e.g., Course, Bundle, Contest, etc.)
DownloadableProduct, Ebook, FermionCourse, FermionContest, OneToOneInstructorCall, LiveEventProduct, FermionBundle Display name of the digital product
1URL-friendly identifier used in product URLs
1Full URL to the product page on your school's website
URL of the product's thumbnail image
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>"
}
]
}
}
}
]