# Get Single Contact Retrieve details for a single contact by their ID. Endpoint: GET /contacts/{contact_id} Version: 1.0.0 Security: ApiKeyHeader, ApiKeyQuery ## Path parameters: - `contact_id` (string, required) The unique ID of the contact. ## Response 200 fields (application/json): - `success` (boolean) Example: true - `contact` (object) - `contact.id` (string) Unique contact identifier (safe string). Example: "8301343831281918940" - `contact.civility` (string) Example: "Mr" - `contact.first_name` (string) Example: "James" - `contact.last_name` (string) Example: "THOMPSON" - `contact.role` (string) Job title. Example: "Chief Technology Officer" - `contact.level_code` (string) Enum: "EXECUTIVE", "DIRECTOR", "MANAGER", "SUPERVISOR", "ASSISTANT", "COLLABORATOR", "OTHER" - `contact.level_label` (string) Example: "Director" - `contact.domain_code` (string) Department/Domain code (any text). Example: "TECH" - `contact.domain_label` (string) Example: "Technology" - `contact.email` (string) Example: "james.thompson@example.com" - `contact.email_test_result` (string) Enum: "Safe to Send", "Risky", "Invalid", "Unknown" - `contact.linkedin_url` (string) Example: "https://www.linkedin.com/in/james-thompson" - `contact.contact_source` (string) Enum: "linkedin", "legal" - `contact.anonymized` (boolean) Whether the contact data is masked (preview mode). - `credits_used` (integer) Example: 1 ## Response 404 fields (application/problem+json): - `success` (boolean) - `error` (object) - `error.code` (string) Example: "INVALID_PARAMETER" - `error.message` (string) Example: "Invalid level_code"