GET
/
api
/
contacts
curl --request GET \
  --url https://app.sentsays.com/api/contacts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 6,
      "uuid": "31e68902-3a30-41d2-816c-5e429970b900",
      "organization_id": 13,
      "first_name": "Jennifer",
      "last_name": "Hudson",
      "phone": "+919856784357",
      "email": "jennifer@gmail.com",
      "full_name": "Jennifer Hudson",
      "formatted_phone_number": "+91 98567 84357",
      "latest_chat_created_at": "2025-06-09T11:00:34Z",
      "avatar": "<string>",
      "address": "{\"street\":\"Althan\",\"city\":\"Surat\",\"state\":\"Gujarat\",\"zip\":\"395017\",\"country\":\"India\"}",
      "metadata": "[]",
      "contact_group_id": 123,
      "is_favorite": 0,
      "ai_assistance_enabled": 0,
      "unread_messages": 0,
      "created_by": 4,
      "created_at": "2025-06-09T10:36:09Z",
      "updated_at": "2025-06-09T10:36:09Z",
      "deleted_at": null
    }
  ],
  "links": {
    "first": "https://api.sentsays.com/api/contacts?page=1",
    "last": "https://api.sentsays.com/api/contacts?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "https://api.sentsays.com/api/contacts",
    "per_page": 10,
    "to": 1,
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEY

Query Parameters

page
integer
default:1

Page number for pagination

Example:

1

per_page
integer
default:10

Number of contacts per page

Example:

10

Response

200
application/json

Successful response with contacts list

The response is of type object.