Skip to main content
GET
/
api
/
auth
/
v1
/
patients
/
{patient_code}
/
eligibility
List of patient eligibility links
curl --request GET \
  --url https://api.anagram.care/api/auth/v1/patients/{patient_code}/eligibility/ \
  --header 'Authorization: <api-key>'
{
  "result": [
    {
      "request_uid": "<string>",
      "provider_app_url": "<string>",
      "results": [
        {
          "persons": [
            {
              "plan": {
                "insurer_state": "<string>",
                "items": [
                  {
                    "network_type": "<string>",
                    "is_authorization_required": true,
                    "limits": {
                      "quantity": 123,
                      "total_coverage": 123,
                      "quantity_remain": 123,
                      "quantity_reserved": 123,
                      "total_coverage_remain": 123
                    },
                    "subitem_limits": [
                      {
                        "code": "<string>",
                        "quantity": 123,
                        "total_coverage": 123
                      }
                    ],
                    "code": "<string>",
                    "copay": 123,
                    "refresh_date": "2023-12-25"
                  }
                ],
                "refresh_date": "2023-12-25",
                "begin_date": "2023-12-25",
                "end_date": "2023-12-25"
              },
              "first_name": "<string>",
              "last_name": "<string>",
              "dob": "2023-12-25",
              "sex": "<string>",
              "member_id": "<string>",
              "ssn_last_four": "<string>",
              "type": "<string>",
              "address": {
                "line1": "<string>",
                "line2": "<string>",
                "city": "<string>",
                "zipcode": "<string>",
                "state": "<string>"
              },
              "email": "<string>",
              "phone": "<string>",
              "id": 123,
              "full_name": "<string>",
              "is_active": true
            }
          ],
          "insurer_code": "<string>",
          "id": 123,
          "plan_is_active": true,
          "status": "<string>",
          "plan_name": "<string>",
          "plan_group": "<string>",
          "plan_group_id": "<string>",
          "plan_begin_date": "2023-12-25",
          "plan_end_date": "2023-12-25",
          "plan_refresh_date": "2023-12-25"
        }
      ]
    }
  ],
  "prev": "<string>",
  "previous": "<string>",
  "next": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

patient_code
string
required

Query Parameters

_page_number
integer
default:0
page_size
integer
default:10

Response

200 - application/json

JSON object response

result
object[]
required
prev
string
previous
string
next
string