Transaction Quota

This endpoint allows you to check your transaction quota usage.

This service is available via both the Cloud API and Gateway API.

Submission Endpoint

  • Method: quota_usage

  • Cloud API Endpoint: api.blxrbdn.com

  • Gateway API Endpoint: 127.0.0.1:28333/ws (assumes WebSocket port 28333)

  • Request type: HTTPS,WSS

Parameters - None

Response Fields

Result Field
Description

account_id

User account ID.

quota_filled

The number of transactions that have been sent from the above account during the last day (UTC time).

quota_limit

The daily limit of the number of transactions that can be sent from the account. For instance, the Professional plan has a limit of 1,500 transactions/day.

Example

wscat -c ws://127.0.0.1:28333/ws --header "Authorization: <YOUR-AUTHORIZATION-HEADER>"
> {"method": "quota_usage", "id": "1", "params": null}
< ......

Response

Last updated