> For the complete documentation index, see [llms.txt](https://docs.truecaller.com/truecaller-for-business/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.truecaller.com/truecaller-for-business/verified-business-api-documentation/number-management/number-details.md).

# Number details

{% hint style="success" %}
Replace the `{{BaseURL}}` with the one mentioned [here ](/truecaller-for-business/verified-business-api-documentation/getting-started.md)
{% endhint %}

<mark style="color:green;">`GET`</mark>`{{BaseURL}}/clients/{clientAccountId}/number_management/numbers`

{% hint style="success" %}
{clientAccountId} : This can be taken directly from the self serve portal under the Manage API Keys Page&#x20;
{% endhint %}

#### Query Parameters

| Name             | Value                                        | Type    |
| ---------------- | -------------------------------------------- | ------- |
| department\_id   | optional, to filter by department            | string  |
| operation\_id    | optional, to filter by operation             | string  |
| process\_id      | optional, to filter by process or subprocess | string  |
| feature\_set\_id | optional, to filter by feature set           | string  |
| limit            | optional, Limit per page                     | integer |
| page             | optional, Current page number                | integer |

<figure><img src="/files/Whm3yd1YftxiTp7aSiax" alt=""><figcaption></figcaption></figure>

{% hint style="warning" %}
For Authorization Token kindly refer the[ Authentication](https://docs.truecaller.com/truecaller-for-business/verified-business-api-documentation/getting-started/authentication) section followed by [Generate Access Token](https://docs.truecaller.com/truecaller-for-business/verified-business-api-documentation/getting-started/generate-access-token) API
{% endhint %}

#### Header

| Name          | Value                                                           |
| ------------- | --------------------------------------------------------------- |
| Authorization | <p><code>Required</code></p><p><code>Bearer \<token></code></p> |

**Response**

{% tabs %}
{% tab title="200 OK" %}

```json
{
    "numbers": [
        {
            "phone_number": "918848628575230",
            "phone_type": "verified",
            "status": "listed",
            "client_account_id": "91c173bb-28d8-4030-9722-8663ff9589f3",
            "created_by_email": "navaneeth.panakkada+v2prod3@truecaller.com",
            "department": "TestingSanity",
            "operation": "Collections",
            "process": "SanityProcess",
            "subprocess": "",
            "feature_set_name": "New Feature set",
            "call_me_back": "enabled",
            "created_at": "2025-07-28T09:25:19.557139Z",
            "updated_at": "2025-07-28T09:25:23.644159Z",
            "label_name": "testLabel from fs page"
        },
        {
            "phone_number": "918735783247237",
            "phone_type": "verified",
            "status": "listed",
            "client_account_id": "91c173bb-28d8-4030-9722-8663ff9589f3",
            "created_by_email": "navaneeth.panakkada+v2prod3@truecaller.com",
            "department": "TestingSanity",
            "operation": "Collections",
            "process": "SanityProcess",
            "subprocess": "",
            "feature_set_name": "New Feature set",
            "call_me_back": "enabled",
            "created_at": "2025-07-28T09:25:19.557139Z",
            "updated_at": "2025-07-28T09:25:23.671083Z",
            "label_name": "testLabel from fs page"
        }
    ],
    "pagination_information": {
        "total_page_count": 8
    }
}
```

{% endtab %}

{% tab title="400 Bad Request" %}

```json
{
    "client_account_id": "91c173bb-28d8-4030-9722-8663ff9589f3",
    "phone_type": "",
    "processing_numbers": [],
    "new_numbers": [
        "911234567891"
    ],
    "other_phonetype_numbers": [],
    "existing_numbers": [],
    "others_numbers": [],
    "invalid_numbers": [],
    "other_feature_set_numbers": [],
    "status": "failed"
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.truecaller.com/truecaller-for-business/verified-business-api-documentation/number-management/number-details.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
