/wallet/getassetissuebyid REST API Endpoint
신체 매개변수
값
정수
필수
로딩 중...
반품
owner_address
로딩 중...
이름
로딩 중...
이름
로딩 중...
total_supply
로딩 중...
trx_num
로딩 중...
precision
로딩 중...
num
로딩 중...
시작 시간
로딩 중...
end_time
로딩 중...
설명
로딩 중...
url
로딩 중...
id
로딩 중...
요청
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuebyid \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"value":10000017}8'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuebyid \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"value":10000017}8'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuebyid';2const 헤더 = {3'Accept': 'application/json',4'Content-Type': 'application/json'5};67const data = {8value: 10000019};1011가져오기(url, {12메서드: 'POST',13헤더: 헤더,14body: JSON.stringify(data)15})16.그런 다음(응답 => 응답.json())17.그런 다음(결과 => {18콘솔.log(결과);19})20.catchcatch (error => {21콘솔.오류(오류);22});23
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuebyid';2const 헤더 = {3'Accept': 'application/json',4'Content-Type': 'application/json'5};67const data = {8value: 10000019};1011가져오기(url, {12메서드: 'POST',13헤더: 헤더,14body: JSON.stringify(data)15})16.그런 다음(응답 => 응답.json())17.그런 다음(결과 => {18콘솔.log(결과);19})20.catchcatch (error => {21콘솔.오류(오류);22});23
1import 요청23url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuebyid'45헤더 = {6'수락': 'application/json',7'content-type': 'application/json'8}910데이터 = {11'value': 100000112}1314response = requests.post(url, json=data, headers=headers)1516if response.status_code == 200:17print(response.json())18else:19print('Request failed with status code:', response.status_code)20
1import 요청23url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuebyid'45헤더 = {6'수락': 'application/json',7'content-type': 'application/json'8}910데이터 = {11'value': 100000112}1314response = requests.post(url, json=data, headers=headers)1516if response.status_code == 200:17print(response.json())18else:19print('Request failed with status code:', response.status_code)20
1require 'net/http'2require 'json'3필수 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuebyid')67http = Net::HTTP.new(url.host, url.port)8http.use_ssl = true910헤더 = {11'Accept' => 'application/json',12'Content-Type' => 'application/json'13}1415데이터 = {16'value' => 100000117}1819요청 = 순::HTTP::POST.새(URL)20요청.본문 = data.to_json21headers.each { |key, value| request[key] = value }2223답변 = http.요청(요청)2425if response.code.to_i == 20026result = JSON.parse(response.body)27puts result28else29puts "Request failed with status code: #{response.code}"30끝31
1require 'net/http'2require 'json'3필수 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuebyid')67http = Net::HTTP.new(url.host, url.port)8http.use_ssl = true910헤더 = {11'Accept' => 'application/json',12'Content-Type' => 'application/json'13}1415데이터 = {16'value' => 100000117}1819요청 = 순::HTTP::POST.새(URL)20요청.본문 = data.to_json21headers.each { |key, value| request[key] = value }2223답변 = http.요청(요청)2425if response.code.to_i == 20026result = JSON.parse(response.body)27puts result28else29puts "Request failed with status code: #{response.code}"30끝31