{ "operationId": "getPublicAllocatorEvents", "method": "GET", "path": "/v3/public-allocator/events", "summary": "Unified Public Allocator event timeline", "description": "Unified stream of public allocator events. `chainId`, `from`, and `to` are required.\n", "tags": [ "PublicAllocator" ], "parameters": [ { "name": "chainId", "in": "query", "required": true, "example": "string" }, { "name": "from", "in": "query", "required": true, "example": 0 }, { "name": "to", "in": "query", "required": true, "example": 0 }, { "name": "type", "in": "query", "required": false, "example": "string" }, { "name": null, "in": null, "required": false }, { "name": null, "in": null, "required": false } ], "responses": { "200": { "description": "Public allocator events", "schema": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object" } }, "meta": { "$ref": "#/components/schemas/PaginationMeta" } } } } } }