From 6f85bdf3f071647d11b4e348304eaf15e18c417a Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 15:55:57 +0000 Subject: [PATCH 1/2] docs: document refreshesAtISO field for daily allowance Co-Authored-By: Adil --- source/includes/_lix_account.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/includes/_lix_account.md b/source/includes/_lix_account.md index 333e6f47d7d..5e78aefcdfa 100644 --- a/source/includes/_lix_account.md +++ b/source/includes/_lix_account.md @@ -52,6 +52,7 @@ Field | Description --------- | ----------- requestsRemaining | The number of requests remaining for the day. refreshesAt | The unix timestamp in seconds of when the daily allowance will refresh. +refreshesAtISO | The ISO 8601 timestamp of when the daily allowance will refresh. ```shell curl "https://api.lix-it.com/v1/account/allowances/daily \ @@ -77,6 +78,7 @@ print(response.json()) ```json { "requestsRemaining": 10000, - "refreshesAt": 1696512494 // represents the unix timestamp in seconds of when the daily allowance will refresh + "refreshesAt": 1696512494, // represents the unix timestamp in seconds of when the daily allowance will refresh + "refreshesAtISO": "2023-10-05T14:48:14Z" // represents the ISO 8601 timestamp of when the daily allowance will refresh } ``` From b943c43902c1f7bdb36066810b93ba1d8e22d1c1 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 15:59:23 +0000 Subject: [PATCH 2/2] docs: reflect ISO 8601 refreshesAt timestamp Co-Authored-By: Adil --- source/includes/_lix_account.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/source/includes/_lix_account.md b/source/includes/_lix_account.md index 5e78aefcdfa..11084e85148 100644 --- a/source/includes/_lix_account.md +++ b/source/includes/_lix_account.md @@ -51,8 +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. -refreshesAtISO | The ISO 8601 timestamp 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 \ @@ -78,7 +77,6 @@ print(response.json()) ```json { "requestsRemaining": 10000, - "refreshesAt": 1696512494, // represents the unix timestamp in seconds of when the daily allowance will refresh - "refreshesAtISO": "2023-10-05T14:48:14Z" // represents the ISO 8601 timestamp 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 } ```