# List 10DLC Brands

## GET or POST Request

{% hint style="info" %}
<https://v1.api19.com/campaigns/brand/list>
{% endhint %}

Get a list of all 10DLC brands on your account

{% tabs %}
{% tab title="Curl Post" %}

```bash
curl https://v1.api19.com/campaigns/brand/list \
 -d 'key=api_token'
```

{% endtab %}

{% tab title="Curl Get" %}

```bash
curl https://v1.api19.com/campaigns/brand/list?key=apikey
```

{% endtab %}

{% tab title="JSON Response" %}

```json
{
	"status": "ok",
	"brands": [
		{
			"brand_id": "string",
			"network": "string",
			"company_name": "string",
			"identity_status": "string",
			"status": "string"
		}
	]
}
```

{% endtab %}
{% endtabs %}
