userNonFundingLedgerUpdates Info Endpoint Method
매개변수
유형
문자열
필수
로딩 중...
사용자
문자열
필수
로딩 중...
시작 시간
정수
로딩 중...
종료 시간
정수
로딩 중...
반품
배열
배열
로딩 중...
시간
정수
로딩 중...
해시
문자열
로딩 중...
델타
객체
로딩 중...
유형
문자열
로딩 중...
vault
문자열
로딩 중...
사용자
문자열
로딩 중...
requestedUsd
문자열
로딩 중...
수수료
문자열
로딩 중...
closingCost
문자열
로딩 중...
basis
문자열
로딩 중...
netWithdrawnUsd
문자열
로딩 중...
요청
1curlmainnet\2-X POST \3-H "Content-Type: application/json" \4--data '{"type":"userNonFundingLedgerUpdates","user":"0x31ca8395cf837de08b24da3f660e77761dfb974b","startTime":1770385909974}'5
1curlmainnet\2-X POST \3-H "Content-Type: application/json" \4--data '{"type":"userNonFundingLedgerUpdates","user":"0x31ca8395cf837de08b24da3f660e77761dfb974b","startTime":1770385909974}'5
1var myHeaders = new Headers();2myHeaders.추가("Content-Type", "application/json");34var raw = JSON.stringify({5"type": "userNonFundingLedgerUpdates",6"사용자": "0x31ca8395cf837de08b24da3f660e77761dfb974b",7"startTime": 17703859099748});910var requestOptions = {11메서드: 'POST',12헤더: myHeaders,13본문: raw,14리디렉션: 'follow'15};1617가져오기("mainnet", requestOptions)18.그런 다음(응답 => 응답.text())19.그런 다음(결과 => console.log(result))20.catchcatch (오류 => console.log('error', error));21
1var myHeaders = new Headers();2myHeaders.추가("Content-Type", "application/json");34var raw = JSON.stringify({5"type": "userNonFundingLedgerUpdates",6"사용자": "0x31ca8395cf837de08b24da3f660e77761dfb974b",7"startTime": 17703859099748});910var requestOptions = {11메서드: 'POST',12헤더: myHeaders,13본문: raw,14리디렉션: 'follow'15};1617가져오기("mainnet", requestOptions)18.그런 다음(응답 => 응답.text())19.그런 다음(결과 => console.log(result))20.catchcatch (오류 => console.log('error', error));21
1import 요청2import json34url = "mainnet"56페이로드 = json.dumps({7"type": "userNonFundingLedgerUpdates",8"사용자": "0x31ca8395cf837de08b24da3f660e77761dfb974b",9"startTime": 177038590997410})11헤더 = {12'Content-Type': 'application/json'13}1415답변 = 요청.요청("POST", url, 헤더=헤더, 데이터=페이로드)1617인쇄(응답.text)18
1import 요청2import json34url = "mainnet"56페이로드 = json.dumps({7"type": "userNonFundingLedgerUpdates",8"사용자": "0x31ca8395cf837de08b24da3f660e77761dfb974b",9"startTime": 177038590997410})11헤더 = {12'Content-Type': 'application/json'13}1415답변 = 요청.요청("POST", url, 헤더=헤더, 데이터=페이로드)1617인쇄(응답.text)18
1require "uri"2require "json"3require "net/http"45url = URI("mainnet")67https = Net::HTTP.new(url.호스트, url.포트)8https.use_ssl = true910요청 = 순::HTTP::POST.새(URL)11요청["Content-Type"] = "application/json"12요청.본문 = JSON.dump({13"type": "userNonFundingLedgerUpdates",14"사용자": "0x31ca8395cf837de08b24da3f660e77761dfb974b",15"startTime": 177038590997416})1718답변 = https.요청(요청)19응답을 반환합니다.read_body20
1require "uri"2require "json"3require "net/http"45url = URI("mainnet")67https = Net::HTTP.new(url.호스트, url.포트)8https.use_ssl = true910요청 = 순::HTTP::POST.새(URL)11요청["Content-Type"] = "application/json"12요청.본문 = JSON.dump({13"type": "userNonFundingLedgerUpdates",14"사용자": "0x31ca8395cf837de08b24da3f660e77761dfb974b",15"startTime": 177038590997416})1718답변 = https.요청(요청)19응답을 반환합니다.read_body20