Block distribution
GET /epochs/:number/blocks
Return the blocks minted for the epoch specified.
Request
Path Parameters
number integer required
Number of the epoch
Example: 225
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 data about the epoch
application/json
Schema
Example (from schema)
Schema
- Array [
- string
Hash of the block
- ]
[
"d0fa315687e99ccdc96b14cc2ea74a767405d64427b648c470731a9b69e4606e",
"38bc6efb92a830a0ed22a64f979d120d26483fd3c811f6622a8c62175f530878",
"f3258fcd8b975c061b4fcdcfcbb438807134d6961ec278c200151274893b6b7d"
]
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...