Skip to main content
GET
/
api
/
v2
/
block-lists-entries
/
{id}
Get block list entry
curl --request GET \
  --url https://api.instantly.ai/api/v2/block-lists-entries/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "019d9c5f-967c-79ad-b96c-0d35f76f14cb",
  "timestamp_created": "2026-04-17T16:56:43.388Z",
  "organization_id": "019d9c5f-967c-79ad-b96c-0d36da1d0acc",
  "bl_value": "example.com",
  "is_domain": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

The ID of the requested item

Example:

"019d9c5f-cc1f-7b71-af1a-0b68ce85ebce"

Response

The requested Block List Entry

A blocked email or domain

id
string<uuid>
required

Unique identifier for the block list entry

Example:

"019d9c5f-967c-79ad-b96c-0d35f76f14cb"

timestamp_created
string<date-time>
required

Timestamp when the block list entry was created

Example:

"2026-04-17T16:56:43.388Z"

organization_id
string<uuid>
required

Organization ID that owns this block list entry

Example:

"019d9c5f-967c-79ad-b96c-0d36da1d0acc"

bl_value
string
required

The email or domain to block

Example:

"example.com"

is_domain
boolean
required

Whether this entry blocks an entire domain

Example:

true