Skip to main content
GET
/
api
/
v1
/
contacts
List contacts
curl --request GET \
  --url https://app.flowella.io/api/v1/contacts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "phone": "<string>",
      "waId": "<string>",
      "name": "<string>",
      "email": "<string>",
      "isOptedOut": true,
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Organization API key (flo_…). Paste the full key; Scalar sends Authorization: Bearer <key>.

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string<cuid>

Response

Paginated contacts

items
object[]
required
nextCursor
string