Transaction metadata content in JSON
GET /metadata/txs/labels/:label
Transaction metadata per label.
Request
Path Parameters
label string required
Metadata label
Example: 1990
Query Parameters
count integer
Possible values: >= 1
and <= 100
Default value: 100
The number of results displayed on one page.
page integer
Possible values: >= 1
and <= 21474836
Default value: 1
The page number for listing the results.
order string
Possible values: [asc
, desc
]
Default value: asc
The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.
Responses
- 200
- 400
- 403
- 404
- 418
- 429
- 500
Return the account metadata content
application/json
Schema
Example (from schema)
Schema
- Array [
- string
- Array [
- ]
- integer
- number
- boolean
- ]
tx_hash string required
Transaction hash that contains the specific metadata
json_metadata objectnullablerequired
Content of the JSON metadata
anyOf
MOD1
MOD3
MOD4
MOD5
MOD6
[
{
"tx_hash": "257d75c8ddb0434e9b63e29ebb6241add2b835a307aa33aedba2effe09ed4ec8",
"json_metadata": {
"ADAUSD": [
{
"value": "0.10409800535729975",
"source": "ergoOracles"
}
]
}
},
{
"tx_hash": "e865f2cc01ca7381cf98dcdc4de07a5e8674b8ea16e6a18e3ed60c186fde2b9c",
"json_metadata": {
"ADAUSD": [
{
"value": "0.15409850555139935",
"source": "ergoOracles"
}
]
}
},
{
"tx_hash": "4237501da3cfdd53ade91e8911e764bd0699d88fd43b12f44a1f459b89bc91be",
"json_metadata": null
}
]
Bad request
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 400,
"error": "Bad Request",
"message": "Backend did not understand your request."
}
Authentication secret is missing or invalid
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 403,
"error": "Forbidden",
"message": "Invalid project token."
}
Component not found
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 404,
"error": "Not Found",
"message": "The requested component has not been found."
}
IP has been auto-banned for extensive sending of requests after usage limit has been reached
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 418,
"error": "Requested Banned",
"message": "IP has been auto-banned for flooding."
}
Usage limit reached
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 429,
"error": "Project Over Limit",
"message": "Usage is over limit."
}
Internal Server Error
application/json
Schema
Example (from schema)
Schema
status_code integer required
error string required
message string required
{
"status_code": 500,
"error": "Internal Server Error",
"message": "An unexpected response was received from the backend."
}
Loading...