/v1/resources
Retrieve a paginated list of all resources in your project. Results are ordered by creation date descending.
Example Request
curl -X GET https://api.cloudplatform.io/v1/resources \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Example Response · 200 OK
{
"data": [
{
"id": "res_8xKq2m",
"name": "Primary Store",
"status": "active",
"created_at": "2026-04-18T09:14:00Z"
}
],
"meta": {
"page": 1,
"per_page": 25,
"total": 142
}
}
?page=2&per_page=50 query parameters. Maximum per_page is 100.