Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Card
List all card products
Get all card products
GET
/
card-product
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/card-product \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"items": [
{
"id": "<string>",
"prefix": "<string>",
"status": "active"
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}
Authorizations
Authentication from public API requests
Query Parameters
A cursor string to fetch the next page of results
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/card-product \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"items": [
{
"id": "<string>",
"prefix": "<string>",
"status": "active"
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.