Skip to main content
GET
/
api
/
v1
/
contacts
/
{email}
Pobierz kontakt
curl --request GET \
  --url https://api.example.com/api/v1/contacts/{email}
{
  "success": true,
  "data": {
    "id": 123,
    "email": "john@example.com",
    "first_name": "John",
    "last_name": "Doe",
    "phone": "+1234567890",
    "tags": ["premium", "engaged"],
    "lead_score": 85,
    "created_at": "2025-01-15T10:30:00",
    "updated_at": "2025-12-30T09:00:00"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.mailist.pl/llms.txt

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

Parametry ścieżki

email
string
required
Adres email kontaktu

Odpowiedź

success
boolean
Wskazuje czy żądanie zakończyło się sukcesem
data
object
Obiekt kontaktu

Przykład

curl https://api.mailist.com/api/v1/contacts/john@example.com \
  -H "X-API-Key: YOUR_API_KEY"

Odpowiedź

{
  "success": true,
  "data": {
    "id": 123,
    "email": "john@example.com",
    "first_name": "John",
    "last_name": "Doe",
    "phone": "+1234567890",
    "tags": ["premium", "engaged"],
    "lead_score": 85,
    "created_at": "2025-01-15T10:30:00",
    "updated_at": "2025-12-30T09:00:00"
  }
}