/v1/accounts/{address}/events/{event_handle}/{field_name} REST API Endpoint
路徑參數
地址
字串
必填
載入中...
event_handle
字串
必填
載入中...
field_name
字串
必填
載入中...
查詢參數
上限
整數
載入中...
start
字串
載入中...
退貨
版本
載入中...
guid
載入中...
creation_number
載入中...
account_address
載入中...
sequence_number
載入中...
類型
載入中...
資料
載入中...
請求
1curl -X 'GET' 'https://docs-demo.aptos-mainnet.quiknode.pro/v1/accounts/0x190d44266241744264b964a37b8f09863167a12d3e70cda39376cfb4e3561e12/events/0x1::account::Account/coin_register_events' \2-H 'Content-Type: application/json'
1curl -X 'GET' 'https://docs-demo.aptos-mainnet.quiknode.pro/v1/accounts/0x190d44266241744264b964a37b8f09863167a12d3e70cda39376cfb4e3561e12/events/0x1::account::Account/coin_register_events' \2-H 'Content-Type: application/json'
1var myHeaders = new Headers();2myHeaders.追加("Content-Type", "application/json");34var requestOptions = {5method: 'GET',6標題: myHeaders,7redirect: 'follow'8};910fetch("https://docs-demo.aptos-mainnet.quiknode.pro/v1/accounts/0x190d44266241744264b964a37b8f09863167a12d3e70cda39376cfb4e3561e12/events/0x1::account::Account/coin_register_events", requestOptions)11.then(response => response.text())12.then(result => console.log(result))13.catch(error => console.log('error', error));
1var myHeaders = new Headers();2myHeaders.追加("Content-Type", "application/json");34var requestOptions = {5method: 'GET',6標題: myHeaders,7redirect: 'follow'8};910fetch("https://docs-demo.aptos-mainnet.quiknode.pro/v1/accounts/0x190d44266241744264b964a37b8f09863167a12d3e70cda39376cfb4e3561e12/events/0x1::account::Account/coin_register_events", requestOptions)11.then(response => response.text())12.then(result => console.log(result))13.catch(error => console.log('error', error));
1匯入 請求2import json34url = "https://docs-demo.aptos-mainnet.quiknode.pro/v1/accounts/0x190d44266241744264b964a37b8f09863167a12d3e70cda39376cfb4e3561e12/events/0x1::account::Account/coin_register_events"56有效載荷 = {}7標題 = {8「Content-Type」: 'application/json'9}1011回應 = 請求.請求("GET", url, headers=headers, data=有效載荷)1213列印(回應.text)14
1匯入 請求2import json34url = "https://docs-demo.aptos-mainnet.quiknode.pro/v1/accounts/0x190d44266241744264b964a37b8f09863167a12d3e70cda39376cfb4e3561e12/events/0x1::account::Account/coin_register_events"56有效載荷 = {}7標題 = {8「Content-Type」: 'application/json'9}1011回應 = 請求.請求("GET", url, headers=headers, data=有效載荷)1213列印(回應.text)14
1需要 "uri"2require "json"3需要 "net/http"45url = URI("https://docs-demo.aptos-mainnet.quiknode.pro/v1/accounts/0x190d44266241744264b964a37b8f09863167a12d3e70cda39376cfb4e3561e12/events/0x1::account::Account/coin_register_events")67https = 網::HTTP.new(url.主機, url.port)8https.use_ssl = true910請求 = 淨::HTTP::Get.new(url)11請求["Content-Type"] = "application/json"1213回應 = https.請求(請求)14將回應。read_body15
1需要 "uri"2require "json"3需要 "net/http"45url = URI("https://docs-demo.aptos-mainnet.quiknode.pro/v1/accounts/0x190d44266241744264b964a37b8f09863167a12d3e70cda39376cfb4e3561e12/events/0x1::account::Account/coin_register_events")67https = 網::HTTP.new(url.主機, url.port)8https.use_ssl = true910請求 = 淨::HTTP::Get.new(url)11請求["Content-Type"] = "application/json"1213回應 = https.請求(請求)14將回應。read_body15