> For the complete documentation index, see [llms.txt](https://docs.enclaive.cloud/enclaive-multi-cloud-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.enclaive.cloud/enclaive-multi-cloud-platform/developers/api/client-api/manage/configurations/cloud-provider.md).

# Cloud Provider

The "Cloud Provider" is the cloud service provider where the resource will be created.

## Get cloud providers

<mark style="color:blue;">`GET`</mark> `{{BASE_URL}}/api/cloud-providers`

Get all available cloud providers for the creation of a resource.

#### Headers

| Name                                            | Type   | Description  |
| ----------------------------------------------- | ------ | ------------ |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer Token |

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

```json
[
    {
        "_id": "6548a383e2442d14b6bf9681",
        "name": "Azure",
        "isDisabled": false
    },
    {
        "_id": "6548a383e2442d14b6bf9682",
        "name": "AWS",
        "isDisabled": false
    },
    {
        "_id": "6548a383e2442d14b6bf9683",
        "name": "GCP",
        "isDisabled": false
    },
    {
        "_id": "6548a383e2442d14b6bf9684",
        "name": "OVH",
        "isDisabled": false
    },
    {
        "_id": "6548a383e2442d14b6bf9685",
        "name": "Kraud.Cloud",
        "isDisabled": false
    }
]
```

{% endtab %}
{% endtabs %}
