Get Orphaned Positions
curl --request GET \
--url http://localhost:8000/executors/positions/orphaned \
--header 'Authorization: Basic <encoded-value>'import requests
url = "http://localhost:8000/executors/positions/orphaned"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('http://localhost:8000/executors/positions/orphaned', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8000",
CURLOPT_URL => "http://localhost:8000/executors/positions/orphaned",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$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 := "http://localhost:8000/executors/positions/orphaned"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:8000/executors/positions/orphaned")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8000/executors/positions/orphaned")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"count": 123,
"orphans": [
{
"executor_id": "<string>",
"executor_type": "<string>",
"account_name": "<string>",
"connector_name": "<string>",
"trading_pair": "<string>",
"lp_provider": "<string>",
"pool_address": "<string>",
"controller_id": "main",
"close_type": "<string>",
"closed_at": "<string>",
"position_address": "<string>",
"state": "<string>",
"hold_reason": "<string>",
"needs_onchain_reconciliation": false
}
]
}Executors
Get Orphaned Positions
List terminated executors that may still own an on-chain position.
Covers three orphan classes:
- Involuntary holds: close_type POSITION_HOLD with hold_reason set (an LP close that exhausted its retries): the position is live on-chain with no automated owner.
- Legacy FAILED records whose final state still reported a position_address (force-stop stragglers, records persisted by older executors).
- Executors terminated by SYSTEM_CLEANUP after an API restart: their on-chain state was never persisted, so they need external reconciliation.
This is a DB-side listing. Before recovering, cross-check candidates against on-chain reality via the gateway positions-owned endpoints (/trading/clmm/positions-owned, /trading/amm/positions-owned).
GET
/
executors
/
positions
/
orphaned
Get Orphaned Positions
curl --request GET \
--url http://localhost:8000/executors/positions/orphaned \
--header 'Authorization: Basic <encoded-value>'import requests
url = "http://localhost:8000/executors/positions/orphaned"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('http://localhost:8000/executors/positions/orphaned', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8000",
CURLOPT_URL => "http://localhost:8000/executors/positions/orphaned",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$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 := "http://localhost:8000/executors/positions/orphaned"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:8000/executors/positions/orphaned")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:8000/executors/positions/orphaned")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"count": 123,
"orphans": [
{
"executor_id": "<string>",
"executor_type": "<string>",
"account_name": "<string>",
"connector_name": "<string>",
"trading_pair": "<string>",
"lp_provider": "<string>",
"pool_address": "<string>",
"controller_id": "main",
"close_type": "<string>",
"closed_at": "<string>",
"position_address": "<string>",
"state": "<string>",
"hold_reason": "<string>",
"needs_onchain_reconciliation": false
}
]
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Was this page helpful?

