Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/includes/_lix_account.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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
}
```