> ## Documentation Index
> Fetch the complete documentation index at: https://developers.mageloyalty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get anniversary

> Get a customer's loyalty anniversary date.

Get the date the customer created their Shopify account, used as their loyalty anniversary. The `identifier` can be a Shopify customer ID or email.

## Response

```json theme={null}
{
  "data": {
    "type": "customer_anniversary",
    "id": "6789012345",
    "attributes": {
      "shopify_customer_id": "6789012345",
      "email": "jane@example.com",
      "anniversary_date": "2023-03-10T09:00:00.000Z"
    }
  }
}
```

`anniversary_date` will be `null` if the Shopify account creation date has not been synced.

## Errors

| Status | Scenario           |
| ------ | ------------------ |
| `404`  | Customer not found |
