> 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/get-10dlc-campaign-numbers.md).

# Get 10DLC Campaign Numbers

## GET or POST Request

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

Get numbers associated with a specific 10DLC campaign

{% tabs %}
{% tab title="Curl Post" %}
{% code title="Curl (POST)" %}

```bash
curl https://v1.api19.com/campaigns/campaign/numbers \
 -d 'key=api_token' \
 -d 'id=12345'
```

{% endcode %}
{% endtab %}

{% tab title="Curl Get" %}
{% code title="Curl (GET)" %}

```bash
curl https://v1.api19.com/campaigns/campaign/numbers?key=apikey&id=12345
```

{% endcode %}
{% endtab %}

{% tab title="JSON Response" %}
{% code title="Response (application/json)" %}

```json
{
	"status": "ok",
	"data": {
		"registryId": [ 
			'5555555555',
			'6666666666',
			'7777777777'
		]
	}
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Parameters

* `id` (required) - Campaign ID
