Docs/Public API/Issuers API
Issuers API
Read issuer-level aggregates for indexed Loyalty Tokens and activity.
GET /issuers#
List issuer-level aggregates.
curl "https://api.loyfin.com/issuers?limit=25"Filters: cursor, limit, chainId, and q. Pagination is cursor-based and computed in SQL.
GET /issuers/:address#
Read one issuer.
curl "https://api.loyfin.com/issuers/0x1111111111111111111111111111111111111111"Issuer object#
| Field | Type | Required | Meaning |
|---|---|---|---|
id | string | yes | Cursor ID for issuer pagination. It is the first indexed Loyalty Token row for this issuer. |
chainId | string | yes | Chain ID. |
issuer | address | yes | Immutable brand issuer identity. |
tokenCount | number | yes | Number of indexed Loyalty Tokens created by this issuer. |
issuableCount / redeemableCount / transferableCount | number | yes | How many of the issuer's tokens currently have each capability open. |
totalIssued / totalRedeemed | string | yes | Aggregated completed issuance and redemption amounts across this issuer. |
transferCount | number | yes | Completed customer transfer count across this issuer's Loyalty Tokens. |
pendingOperationCount | number | yes | Signed operations currently waiting to be mined or submitted. |
lastActivityAt | datetime | yes | Most recent indexed token, operation, issuance, redemption, or transfer activity. |