Retrieve the transactions of a address
POSThttps://minatokens.com/api/v1//info/transactions
The transactions
endpoint retrieves the transactions of a address.
Request
- application/json
Bodyrequired
The address of the token contract (optional). One of tokenAddress or tokenId is required.
The token ID (optional). One of tokenAddress or tokenId is required.
The Mina address for which to retrieve the transactions. Optional
Responses
- 200
- 400
- 401
- 403
- 429
- 500
- 503
Successful retrieval of transactions.
- application/json
- Schema
- Example (auto)
Schema
transactions object[]required
{
"transactions": [
{
"timestamp": 0,
"status": "string",
"updatedAccounts": [
{
"accountAddress": "string",
"isZkappAccount": true,
"verificationKeyHash": "string"
}
],
"accountUpdatesCount": 0,
"proverAddress": "string",
"isZkappAccount": true,
"hash": "string",
"fee": 0,
"memo": "string"
}
]
}
Bad request - invalid input parameters.
- application/json
- Schema
- Example (auto)
Schema
Error message detailing the issue.
{
"error": "string"
}
Unauthorized - user not authenticated.
- application/json
- Schema
- Example (auto)
Schema
Error message detailing the issue.
{
"error": "string"
}
Forbidden - user doesn't have permission.
- application/json
- Schema
- Example (auto)
Schema
Error message detailing the issue.
{
"error": "string"
}
Too many requests.
- application/json
- Schema
- Example (auto)
Schema
Error message detailing the issue.
{
"error": "string"
}
Internal server error - something went wrong during the request.
- application/json
- Schema
- Example (auto)
Schema
Error message detailing the issue.
{
"error": "string"
}
Service unavailable - blockchain or other external service is down.
- application/json
- Schema
- Example (auto)
Schema
Error message detailing the issue.
{
"error": "string"
}
Authorization: x-api-key
name: x-api-keytype: apiKeyin: headerdescription: API key for authorization. Get your API key at https://minatokens.com/api
- curl
- javascript
- nodejs
- python
- rust
- ocaml
- go
- java
- powershell
- CURL
curl -L 'https://minatokens.com/api/v1/info/transactions' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-api-key: <x-api-key>' \
-d '{
"tokenAddress": "string",
"tokenId": "string",
"address": "string"
}'