Search and retrieve contacts within a specific contact list using the AutoSend API.
curl --request POST \
--url https://api.autosend.com/v1/contact-lists/contacts/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"contactListId": "60d5ec49f1b2c72d9c8b4567",
"page": 1,
"limit": 20,
"email": "jane"
}'
{
"success": true,
"data": {
"contacts": [
{
"id": "60d5ec49f1b2c72d9c8b1111",
"email": "[email protected]",
"firstName": "Jane",
"lastName": "Smith",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-02-20T14:45:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 1,
"pages": 1
}
}
}
curl --request POST \
--url https://api.autosend.com/v1/contact-lists/contacts/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"contactListId": "60d5ec49f1b2c72d9c8b4567",
"page": 1,
"limit": 20,
"email": "jane"
}'
{
"success": true,
"data": {
"contacts": [
{
"id": "60d5ec49f1b2c72d9c8b1111",
"email": "[email protected]",
"firstName": "Jane",
"lastName": "Smith",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-02-20T14:45:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 1,
"pages": 1
}
}
}
<token>, where <token> is your auth token."60d5ec49f1b2c72d9c8b4567"1Default: 1Example: 11 - 100Default: 20Example: 20"jane"trueShow child attributes
Show child attributes
"60d5ec49f1b2c72d9c8b1111""[email protected]""Jane""Smith""2026-01-15T10:30:00.000Z""2026-02-20T14:45:00.000Z"curl --request POST \
--url https://api.autosend.com/v1/contact-lists/contacts/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"contactListId": "60d5ec49f1b2c72d9c8b4567",
"page": 1,
"limit": 20,
"email": "jane"
}'
{
"success": true,
"data": {
"contacts": [
{
"id": "60d5ec49f1b2c72d9c8b1111",
"email": "[email protected]",
"firstName": "Jane",
"lastName": "Smith",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-02-20T14:45:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 1,
"pages": 1
}
}
}