***

title: get
slug: /reference/python/rest/number-groups/get
description: Retrieve a specific number group.
max-toc-depth: 3
---------------------

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

Retrieve a specific number group by ID.

<EndpointSchemaSnippet endpoint="GET /api/relay/rest/number_groups/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/number_groups/{id}" />

## **Example**

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

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

group = client.number_groups.get("group-id")
print(group["name"])
```