# Get Apps

## Get Apps

<mark style="color:blue;">`GET`</mark> `https://environment.monterosa.cloud/api/v2/spaces/:space_id/apps`

This endpoint allows you to get all apps related to brand.

#### Path Parameters

| Name      | Type   | Description |
| --------- | ------ | ----------- |
| space\_id | string | Space ID    |

#### Headers

| Name           | Type   | Description                                                   |
| -------------- | ------ | ------------------------------------------------------------- |
| Content-Type   | string | application/vnd.api+json                                      |
| Authentication | string | API token. Example: `Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb` |

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "data":[
    {
      "id":"9b9dc57b-9ee8-494c-a880-16a1a3e2db14",
      "type":"apps",
      "attributes":{
        "name":"Monterosa Spec",
        "app_id":"monterosa_app",
        "version":"v23-9-8",
        "social_curation_enabled":true,
        "schedule_enabled":true,
        "analytics_enabled":true,
        "live_activity_enabled":true,
        "localisation_enabled":true,
        "created_at":1573474484,
        "created_at_iso":"2019-11-11T12:14:44Z",
        "updated_at":1573474484,
        "updated_at_iso":"2019-11-11T12:14:44Z",
        "spec_url":"https://environment.lvis.io/spec/v23-9-8/spec.json",
        "embed_url": "https://apps.monterosa.cloud/elements/23.9.8/index.html"
      },
      "links":{
        "self":"https://environment.lvis.io/api/v2/apps/9b9dc57b-9ee8-494c-a880-16a1a3e2db14"
      }
    }
  ]
}
```

{% endtab %}
{% endtabs %}
