List members

GET/v1/segments/{id}/members

Secret key — sk_… or sk_test_… · Base URL https://api.volanea.com

Current members joined to their contacts, newest entries first.

Path parameters

  • idstringrequired

    Segment id.

Query parameters

  • limitinteger

Response

Current members.

  • dataobject[]required
    • contactIdstringrequired
    • emailemailrequired
    • firstNamestring | null
    • lastNamestring | null
    • enteredAtdate-timerequired

Errors

Every failure returns the standard envelope — branch on `code`, never on the wording of `error`.

  • 401Missing or invalid API key.
  • 404Not found.
  • 422Request validation failed (code `validation_error`, 422).

Request

curl https://api.volanea.com/v1/segments/id_123/members?limit=50 \
  -H "Authorization: Bearer sk_..."

Response

200 · application/json

{
  "success": true,
  "data": {
    "data": [
      {
        "contactId": "con_5e90",
        "email": "ada@example.com",
        "firstName": "Ada",
        "lastName": "Lovelace",
        "enteredAt": "2026-01-01T09:00:00.000Z"
      }
    ]
  }
}

92 endpoints · OpenAPI document