/mpt/supply-historympt-supplyHistoryReturns per-bucket mint / burn / clawback / transfer counts and amounts for an MPT issuance, bucketed hourly or daily. netSupplyDelta = mint − burn − clawback gives the signed supply change per bucket.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Name | Type | Default | Description |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 | |
issuanceIdrequired | string | ||
interval | enum<string> | "daily" | Available hourlydaily |
startTime | integer | ||
endTime | integer |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | |
items[]. | integer | Bucket start timestamp, Unix-seconds. |
items[]. | string | |
items[]. | string | |
items[]. | string | |
items[]. | integer | |
items[]. | integer | |
items[]. | integer | |
items[]. | integer | |
items[]. | string | mintAmount − burnAmount − clawbackAmount. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"issuanceId": "string",
"bucket": 1745798400,
"mintAmount": "string",
"burnAmount": "string",
"clawbackAmount": "string",
"mintCount": 0,
"burnCount": 0,
"clawbackCount": 0,
"transferCount": 0,
"netSupplyDelta": "string"
}
],
"nextCursor": "string"
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "NOT_FOUND",
"message": "Not found",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}