diff --git a/source/includes/_lix_account.md b/source/includes/_lix_account.md index 333e6f47d7d..11084e85148 100644 --- a/source/includes/_lix_account.md +++ b/source/includes/_lix_account.md @@ -51,7 +51,7 @@ This endpoint is free to use. Field | Description --------- | ----------- requestsRemaining | The number of requests remaining for the day. -refreshesAt | The unix timestamp in seconds of when the daily allowance will refresh. +refreshesAt | The ISO 8601 timestamp of when the daily allowance will refresh. ```shell curl "https://api.lix-it.com/v1/account/allowances/daily \ @@ -77,6 +77,6 @@ print(response.json()) ```json { "requestsRemaining": 10000, - "refreshesAt": 1696512494 // represents the unix timestamp in seconds of when the daily allowance will refresh + "refreshesAt": "2023-10-05T14:48:14Z" // represents the ISO 8601 timestamp of when the daily allowance will refresh } ```