Public API
Get available categories
GET
/
public
/
shops
/
{id}
/
categories
Copy
curl --request GET \
--url https://api.pandabase.io/public/shops/{id}/categories
Copy
{
"statusCode": 200,
"message": "OK",
"payload": {
"categories": [
{
"id": "ctg_AlPz4AtrQM",
"name": "Gift Card",
"handle": "giftcards"
}
]
}
}
Path Parameters
Response
200 - application/json
OK
The response is of type object
.
Copy
curl --request GET \
--url https://api.pandabase.io/public/shops/{id}/categories
Copy
{
"statusCode": 200,
"message": "OK",
"payload": {
"categories": [
{
"id": "ctg_AlPz4AtrQM",
"name": "Gift Card",
"handle": "giftcards"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.