/v1/resources
List resources
Returns a paginated collection of resources scoped to your workspace.
Query Parameters
| Name | Type | Description |
|---|---|---|
| limit | integer | Max items to return (default 20) |
| cursor | string | Pagination cursor from a previous response |
Request
curl -X GET "https://api.cloudplatform.dev/v1/resources?limit=20" \
-H "Authorization: Bearer sk_live_..."
Response 200
{
"data": [
{ "id": "res_1a2b", "name": "invoice-service", "status": "active" }
],
"next_cursor": "eyJvZmZzZXQi..."
}