---
title: "List team-wide blacklisted numbers"
method: GET
path: "/blacklists/numbers"
tags: ["blacklist"]
---

# List team-wide blacklisted numbers

`GET /blacklists/numbers`

Retrieves the phone numbers on your team's shared blacklist. The team blacklist applies to all users — calls from blacklisted numbers are blocked for the entire team. This is distinct from per-user blacklists (`GET /users/{userId}/blacklists/numbers`). Results are paginated using `limit_count` and `limit_offset`.

**Permission:** `Numbers Read` required.

**Monitoring:** **Required.** The team blacklist is a supervisory feature. Returns `401 Unauthorized` if Monitoring is OFF on your API key.

## Query parameters

- `limit_count` integer
- `limit_offset` integer

## Response `200`

Successful operation — returns the blacklisted numbers.

- BlacklistList
  - `team_id` integer — Your team identifier
  - `limit_offset_setted` integer — Number of elements that will be ignored (default: 0).
  - `limit_count_setted` integer — The number of results (default: 100).
  - `total_blacklist_count` integer — The total number of blacklisted phone numbers
  - `blacklist_list_count` integer — The size of the array <em>blacklist_list</em>, corresponds to the number of blacklisted phone numbers retrieved.
  - `blacklist_list` Blacklist[]
    - `user_id` integer — Your user identifier
    - `team_id` integer — Your team identifier
    - `number` integer — A blacklisted number
    - `comment` string, nullable — The comment about this blacklisted number, can be null.
    - `direction` string — IN or OUT for blacklisted numbers (direction of the call)

## Other responses

- `204` — No blacklisted numbers found.
- `401` — Unauthorized — invalid or missing API token, missing `Numbers Read` permission, or Monitoring is OFF.
- `500` — Internal server error.

---

[API](https://skmtc.net/ringover/apis/ringover-public-api.md) · [All operations](https://skmtc.net/ringover/apis/ringover-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ringover/ringover-public-api/revisions/9da73dd2f99e/schema)
