Get Event
Endpoint
Section titled “Endpoint”GET /api/event/v1Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
block_number | query | integer | The exact block number | |
block_start | query | integer | block number for start of range | |
block_end | query | integer | block number for end of range | |
timestamp_start | query | integer | Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
timestamp_end | query | integer | Start of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive) | |
pallet | query | string | ||
phase | query | string | ||
name | query | string | Event name. | |
full_name | query | string | Full name of the event, e.g. “SubtensorModule.AxonServed” | |
extrinsic_id | query | string | Extrinsic Id of the events | |
call_id | query | string | ||
id | query | string | ||
page | query | integer | The page number of the response. | |
limit | query | integer | The number of responses. max is 200, | |
order | query | string |
Responses
Section titled “Responses”200 — 200
Section titled “200 — 200”Media: application/json
{ "type": "object", "properties": { "pagination": { "type": "object", "properties": { "current_page": { "type": "integer", "example": 1, "default": 0 }, "per_page": { "type": "integer", "example": 10, "default": 0 }, "total_items": { "type": "integer", "example": 307814734, "default": 0 }, "total_pages": { "type": "integer", "example": 30781474, "default": 0 }, "next_page": { "type": "integer", "example": 2, "default": 0 }, "prev_page": {} } }, "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "example": "4106955-0024" }, "extrinsic_index": { "type": "integer", "example": 9, "default": 0 }, "index": { "type": "integer", "example": 24, "default": 0 }, "phase": { "type": "string", "example": "ApplyExtrinsic" }, "pallet": { "type": "string", "example": "System" }, "name": { "type": "string", "example": "ExtrinsicFailed" }, "full_name": { "type": "string", "example": "System.ExtrinsicFailed" }, "args": { "type": "object", "properties": { "dispatchError": { "type": "object", "properties": { "__kind": { "type": "string", "example": "Module" }, "value": { "type": "object", "properties": { "error": { "type": "string", "example": "0x0a000000" }, "index": { "type": "integer", "example": 7, "default": 0 } } } } }, "dispatchInfo": { "type": "object", "properties": { "class": { "type": "object", "properties": { "__kind": { "type": "string", "example": "Normal" } } }, "paysFee": { "type": "object", "properties": { "__kind": { "type": "string", "example": "No" } } }, "weight": { "type": "object", "properties": { "proofSize": { "type": "string", "example": "43991" }, "refTime": { "type": "string", "example": "1185414000" } } } } } } }, "block_number": { "type": "integer", "example": 4106955, "default": 0 }, "extrinsic_id": { "type": "string", "example": "4106955-0009" }, "call_id": {}, "timestamp": { "type": "string", "example": "2024-10-23T15:36:36.001Z" } } } } }}400 — 400
Section titled “400 — 400”Media: application/json
{ "type": "object", "properties": {}}Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.