{ "openapi": "3.0.0", "info": { "title": "Atlas | External", "version": "1.0.0", "description": "" }, "servers": [ { "url": "{{baseUrl}}" } ], "paths": { "/rpc/999/{perfKey}": { "post": { "summary": "RPC Request", "responses": {}, "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "integer" }, "jsonrpc": { "type": "string", "format": "utc-millisec" }, "method": { "type": "string" }, "params": { "type": "array", "items": { "type": "object", "properties": { "data": { "type": "string", "format": "utc-millisec" } } } } } }, "example": { "id": 1, "jsonrpc": "2.0", "method": "eth_blockNumber", "params": [ { "data": "0x4360005260206000f3" }, "0x14a2cb8" ] } } } } }, "parameters": [ { "name": "perfKey", "in": "path", "required": true, "schema": { "type": "string" }, "example": "{{perfKey}}" } ] }, "/chains": { "get": { "summary": "Get supported chains", "responses": {} } }, "/health": { "get": { "summary": "Health", "responses": {} } } } }