This endpoint returns the status of order.
curl --request GET \
--url https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-idsimport requests
url = "https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids")
.asString();require 'uri'
require 'net/http'
url = URI("https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"orderIds": [
"<string>"
]
}{
"errorCode": 123,
"errorMessage": "<string>",
"errorPayload": {}
}DLN
This endpoint returns the status of order.
This endpoint returns the status of order.
GET
/
v1.0
/
dln
/
tx
/
{hash}
/
order-ids
This endpoint returns the status of order.
curl --request GET \
--url https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-idsimport requests
url = "https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids")
.asString();require 'uri'
require 'net/http'
url = URI("https://dln.debridge.finance/v1.0/dln/tx/{hash}/order-ids")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"orderIds": [
"<string>"
]
}{
"errorCode": 123,
"errorMessage": "<string>",
"errorPayload": {}
}This endpoint returns the status of order.
Previous
Generates a transaction that cancels the given order
Next
⌘I