GET
/
api
/
auth
/
v1
/
patients
curl --request GET \
  --url https://api.anagram.care/api/auth/v1/patients/ \
  --header 'Authorization: <api-key>'
{
  "result": [
    {
      "created_at": "2025-03-17T13:51:16.700206+00:00",
      "location_id": 56,
      "first_name": "michael",
      "middle_name": null,
      "last_name": "enslin",
      "dob": "1950-02-28",
      "sex": "male",
      "ssn_last_four": "1234",
      "address": {
        "line1": "61st Street, Dolphin Hotel",
        "line2": "Room 1408",
        "recipient": null,
        "city": "New York",
        "zipcode": "10065",
        "state": "NY"
      },
      "email": "mike@foo.bar",
      "phone": "1234567890",
      "account_number": null,
      "code": "PAT19T",
      "location": {
        "id": 56,
        "status": "enabled",
        "title": "Title 55",
        "code": "LOC56T"
      }
    },
    {
      "created_at": "2025-03-16T13:51:16.712693+00:00",
      "location_id": 56,
      "first_name": "jane",
      "middle_name": null,
      "last_name": "doe",
      "dob": "2008-02-28",
      "sex": "female",
      "ssn_last_four": "1234",
      "address": {
        "line1": "69 1st Street",
        "line2": "Apt. 14",
        "recipient": null,
        "city": "New York",
        "zipcode": "10066",
        "state": "NY"
      },
      "email": "jane@foo.bar",
      "phone": "1234567890",
      "account_number": null,
      "code": "PAT20T",
      "location": {
        "id": 56,
        "status": "enabled",
        "title": "Title 55",
        "code": "LOC56T"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Your API token prefaced with an "Api" prefix. Example value: "Api B3F4242424E3FDB4242424242A9C7642"

Query Parameters

_page_number
integer
default:0
page_size
integer
default:10

Response

200 - application/json

JSON object response

The response is of type object.