Skip to main content
POST
/
contacts
/
search
/
emails
Search Contacts by Emails
curl --request POST \
  --url https:/api.autosend.com/v1/contacts/search/emails \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "emails": [
    "[email protected]",
    "[email protected]"
  ]
}'
{
  "success": true,
  "data": {
    "contacts": [
      {
        "id": "507f1f77bcf86cd799439011",
        "email": "[email protected]",
        "firstName": "John",
        "lastName": "Doe",
        "userId": "user_12345",
        "customFields": {
          "company": "Acme Corp",
          "role": "Developer",
          "plan": "premium"
        },
        "updatedAt": "2024-01-15T10:30:00.000Z",
        "createdAt": "2024-01-15T10:30:00.000Z",
        "projectId": "229f1f77bcf86cd9273048038"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Array of email addresses to search

emails
string<email>[]
required

Array of email addresses (minimum 1, automatically normalized)

Minimum length: 1

Response

200 - application/json

Contacts retrieved successfully

success
boolean
Example:

true

data
object