Home
Version 3
Spaces API

Spaces API

List all Spaces

GET /v2/spaces

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: name, organization_guid, developer_guid, app_guid
  • q=filter:value
  • q=filter>value
  • q=filter IN a,b,c
page Page of results to fetch
results-per-page Number of results per page
order-direction Order of the results: asc (default) or desc
inline-relations-depth 0 - don't inline any relations and return URLs. Otherwise, inline to depth N.

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE1OSIsImVtYWlsIjoiZW1haWwtMTIyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTU3NTQxMzh9.qNLIVC7tqwJMymetuwycbX3GqyD9zc8tRtpkQjt2H30
Host: example.org
Cookie: 

Route

GET /v2/spaces

cURL

curl "https://api.[your-domain.com]/v2/spaces" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE1OSIsImVtYWlsIjoiZW1haWwtMTIyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTU3NTQxMzh9.qNLIVC7tqwJMymetuwycbX3GqyD9zc8tRtpkQjt2H30" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 33102586-67ad-4940-98f8-13b12d22bdbc
Content-Length: 1462
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "feea1d4c-b17a-4510-a322-be44b4a24b06",
        "url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06",
        "created_at": "2014-11-05T01:02:18+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "name-672",
        "organization_guid": "69c15ad3-5fd4-4a9e-a0f5-6347c9c1cbfb",
        "space_quota_definition_guid": null,
        "organization_url": "/v2/organizations/69c15ad3-5fd4-4a9e-a0f5-6347c9c1cbfb",
        "developers_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/developers",
        "managers_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/managers",
        "auditors_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/auditors",
        "apps_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/apps",
        "routes_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/routes",
        "domains_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/domains",
        "service_instances_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/service_instances",
        "app_events_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/app_events",
        "events_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/events",
        "security_groups_url": "/v2/spaces/feea1d4c-b17a-4510-a322-be44b4a24b06/security_groups"
      }
    }
  ]
}