> For the complete documentation index, see [llms.txt](https://apidocs.api19.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.api19.com/campaigns/list-10dlc-brands.md).

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