blacklist/get_domains
Tool: read
List all blacklisted domains with optional text search and pagination.
Returns a paginated list of domain blacklist entries. Each entry has a blockId needed for deletion.
Arguments
| name | type | req | notes |
|---|---|---|---|
| search | string | – | Filter by domain text |
| page | integer | – | Page number, 1-indexed (default 1) |
| limit | integer | – | limit default 30, max 30; see schemas/pagination |
| startingAfter | integer | – | Cursor for next page (int64) |
Response
200 — Paginated list; object: {items: BlacklistDomain[], pagination}. Deltas: none.
| field | type | constraints | description |
|---|---|---|---|
| items[].blockId | integer | int64 | Use this id to delete the entry via blacklist/delete_domains_by_id. |
| items[].domain | string | Blacklisted domain. | |
| items[].createdAt | string | date-time | When it was added. |
Pagination: see schemas/pagination.
Errors: 400, 401, 406, 422, 429, 500 — shared schema: schemas/errors.
Invoke
Call read with name: "blacklist/get_domains".