# 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 %}
