Skip to main content
GET
/
contacts
cURL
curl --request GET \
  --url https://api.caspen.com/v1/contacts
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "title": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "preferred_name": "<string>",
      "profession": "<string>",
      "company": "<string>",
      "email": "<string>",
      "notes": "<string>",
      "phone_numbers": [
        {
          "id": "<string>",
          "code": "<string>",
          "number": "<string>",
          "type": "<string>"
        }
      ],
      "address": {
        "line1": "<string>",
        "line2": "<string>",
        "city": "<string>",
        "state": "<string>",
        "postal_code": "<string>",
        "country_code": "<string>"
      },
      "created_at": "<string>"
    }
  ],
  "links": {
    "prev": "<string>",
    "next": "<string>"
  }
}

Query Parameters

cursor
string
limit
integer
Required range: 1 <= x <= 100

Response

Paginated set of ContactResource

data
ContactResource · object[]
required