Fetch normalized action lifecycle status from indexed vault events, redeem state, and keeper readiness.
curl --request GET \
--url https://portal.signalite.ai/api/v1/actions/statusimport requests
url = "https://portal.signalite.ai/api/v1/actions/status"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://portal.signalite.ai/api/v1/actions/status', 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://portal.signalite.ai/api/v1/actions/status",
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://portal.signalite.ai/api/v1/actions/status"
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://portal.signalite.ai/api/v1/actions/status")
.asString();require 'uri'
require 'net/http'
url = URI("https://portal.signalite.ai/api/v1/actions/status")
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{
"success": true,
"data": {
"id": "<string>",
"action": "deposit",
"status": "indexing",
"wallet": "<string>",
"txHash": "<string>",
"redeemId": "<string>",
"available": true,
"timestamps": {
"submittedAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"redeem": {
"id": "<string>",
"status": "pending",
"wallet": "<string>",
"owner": "<string>",
"receiver": "<string>",
"requestedTxHash": "<string>",
"fulfilledTxHash": "<string>",
"claimedTxHash": "<string>",
"cancelledTxHash": "<string>",
"requestedAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"shares": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"assets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"steps": [
{
"id": "<string>",
"kind": "erc20_approval",
"status": "confirmed",
"txHash": "<string>",
"message": "<string>"
}
]
},
"meta": {
"updatedAt": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}Operations
Fetch normalized action lifecycle status from indexed vault events, redeem state, and keeper readiness.
GET
/
api
/
v1
/
actions
/
status
Fetch normalized action lifecycle status from indexed vault events, redeem state, and keeper readiness.
curl --request GET \
--url https://portal.signalite.ai/api/v1/actions/statusimport requests
url = "https://portal.signalite.ai/api/v1/actions/status"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://portal.signalite.ai/api/v1/actions/status', 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://portal.signalite.ai/api/v1/actions/status",
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://portal.signalite.ai/api/v1/actions/status"
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://portal.signalite.ai/api/v1/actions/status")
.asString();require 'uri'
require 'net/http'
url = URI("https://portal.signalite.ai/api/v1/actions/status")
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{
"success": true,
"data": {
"id": "<string>",
"action": "deposit",
"status": "indexing",
"wallet": "<string>",
"txHash": "<string>",
"redeemId": "<string>",
"available": true,
"timestamps": {
"submittedAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"redeem": {
"id": "<string>",
"status": "pending",
"wallet": "<string>",
"owner": "<string>",
"receiver": "<string>",
"requestedTxHash": "<string>",
"fulfilledTxHash": "<string>",
"claimedTxHash": "<string>",
"cancelledTxHash": "<string>",
"requestedAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"shares": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
},
"assets": {
"raw": "1000000",
"decimals": 6,
"formatted": "1.000000"
}
},
"steps": [
{
"id": "<string>",
"kind": "erc20_approval",
"status": "confirmed",
"txHash": "<string>",
"message": "<string>"
}
]
},
"meta": {
"updatedAt": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "ACTION_BUILD_FAILED",
"message": "<string>"
}
}