Home
Version 3
Spaces API

Spaces API

List all Apps for the Space

GET /v2/spaces/:guid/apps

Request

Route

GET /v2/spaces/0905741b-871e-4bf1-baf9-3d567c2e8af1/apps

Parameters

Name Description Valid Values Example Values
guid The guid of the Space
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: name, space_guid, organization_guid, diego, stack_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.
orphan-relations 0 - de-duplicate object entries in response
exclude-relations comma-delimited list of relations to drop from response
include-relations comma-delimited list of the only relations to include in response

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTUwIiwiZW1haWwiOiJlbWFpbC0yOUBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDQ1MzYyMjk3fQ.fcmbi4yfndSqhJPq0IpmD-2_salcBmrknA_pwZSxPQM
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/spaces/0905741b-871e-4bf1-baf9-3d567c2e8af1/apps" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTUwIiwiZW1haWwiOiJlbWFpbC0yOUBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDQ1MzYyMjk3fQ.fcmbi4yfndSqhJPq0IpmD-2_salcBmrknA_pwZSxPQM" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "8e5a153d-da71-45e4-b20c-799293eb7b86",
        "url": "/v2/apps/8e5a153d-da71-45e4-b20c-799293eb7b86",
        "created_at": "2015-10-13T17:31:37Z",
        "updated_at": "2015-10-13T17:31:37Z"
      },
      "entity": {
        "name": "name-132",
        "production": false,
        "space_guid": "0905741b-871e-4bf1-baf9-3d567c2e8af1",
        "stack_guid": "4e8ef7d7-4ecb-4616-841d-991d2c65c852",
        "buildpack": null,
        "detected_buildpack": null,
        "environment_json": null,
        "memory": 1024,
        "instances": 1,
        "disk_quota": 1024,
        "state": "STOPPED",
        "version": "a50f5ecb-01fb-4b69-aaef-73f6b4c9be3a",
        "command": null,
        "console": false,
        "debug": null,
        "staging_task_id": null,
        "package_state": "PENDING",
        "health_check_type": "port",
        "health_check_timeout": null,
        "staging_failed_reason": null,
        "staging_failed_description": null,
        "diego": false,
        "docker_image": null,
        "package_updated_at": "2015-10-13T17:31:37Z",
        "detected_start_command": "",
        "enable_ssh": true,
        "docker_credentials_json": {
          "redacted_message": "[PRIVATE DATA HIDDEN]"
        },
        "space_url": "/v2/spaces/0905741b-871e-4bf1-baf9-3d567c2e8af1",
        "stack_url": "/v2/stacks/4e8ef7d7-4ecb-4616-841d-991d2c65c852",
        "events_url": "/v2/apps/8e5a153d-da71-45e4-b20c-799293eb7b86/events",
        "service_bindings_url": "/v2/apps/8e5a153d-da71-45e4-b20c-799293eb7b86/service_bindings",
        "routes_url": "/v2/apps/8e5a153d-da71-45e4-b20c-799293eb7b86/routes"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 97d23b95-67cd-4786-9359-93eced82b029
Content-Length: 1799
X-Content-Type-Options: nosniff