***

title: list_campaigns
slug: /reference/python/rest/registry/brands/list-campaigns
description: List campaigns under a brand.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

List messaging campaigns under a brand.

<EndpointSchemaSnippet endpoint="GET /api/relay/rest/registry/beta/brands/{id}/campaigns" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/registry/beta/brands/{id}/campaigns" />

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

campaigns = client.registry.brands.list_campaigns("brand-id")
for c in campaigns.get("data", []):
    print(c.get("description"), c.get("usecase"))
```