GET
https://api.example.com/v1/orders?limit=2&status=paidParameters
Try an invalid value (like limit = abc) to see an error response.
curl -X GET "https://api.example.com/v1/orders?limit=2&status=paid" \ -H "Authorization: Bearer $API_KEY"
Response200214 ms
{
"object": "list",
"data": [
{
"id": "ord_1042",
"customer": "cus_88",
"amount": 4900,
"currency": "usd",
"status": "paid"
},
{
"id": "ord_1041",
"customer": "cus_31",
"amount": 12900,
"currency": "usd",
"status": "paid"
}
]
}Endpoint Explorer is a fictional brand. This is a concept build by Hassnain Khan to demonstrate api integration — not a real business or client project.