Skip to main content
GET
/
api
/
v1
/
contacts
/
blacklisted
Get paginated list of blacklisted contacts
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/contacts/blacklisted \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Blacklisted contacts retrieved successfully",
  "data": {
    "current_page": 1,
    "data": [
      {
        "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "surname": "<string>",
        "email": "<string>",
        "phone_number": "<string>",
        "status": "Blacklisted",
        "blacklist": {
          "type": "Phone",
          "reason": "<string>",
          "is_permanent": true,
          "expires_at": "2023-11-07T05:31:56Z",
          "blacklisted_at": "2023-11-07T05:31:56Z"
        }
      }
    ],
    "last_page": 123,
    "total": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Query Parameters

page
integer
default:1
per_page
integer
default:15

Search term for name, surname, email, or phone

Response

Success

success
boolean
Example:

true

message
string
Example:

"Blacklisted contacts retrieved successfully"

data
object