Get Intent
curl --request GET \
--url https://v1.orchestrator.rhinestone.dev/intents/{id} \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-version: <x-api-version>'import requests
url = "https://v1.orchestrator.rhinestone.dev/intents/{id}"
headers = {
"x-api-version": "<x-api-version>",
"x-api-key": "<x-api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'x-api-version': '<x-api-version>', 'x-api-key': '<x-api-key>'}
};
fetch('https://v1.orchestrator.rhinestone.dev/intents/{id}', 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://v1.orchestrator.rhinestone.dev/intents/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>",
"x-api-version: <x-api-version>"
],
]);
$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://v1.orchestrator.rhinestone.dev/intents/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-version", "<x-api-version>")
req.Header.Add("x-api-key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://v1.orchestrator.rhinestone.dev/intents/{id}")
.header("x-api-version", "<x-api-version>")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://v1.orchestrator.rhinestone.dev/intents/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-version"] = '<x-api-version>'
request["x-api-key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"status": "COMPLETED",
"accountAddress": "0x3672e268a79bd4acc5ee646bdda652547c7a435c",
"operations": [
{
"chain": 10,
"items": [
{
"type": "FILL",
"status": "COMPLETED",
"txHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
"timestamp": 1633493192
}
]
}
],
"details": {
"id": "12345678901234567890",
"nonce": "0x000000000000000000000000000000000000000000000000ab54a98ceb1f0ad2",
"recipient": "0x3672e268a79bd4acc5ee646bdda652547c7a435c",
"createdAt": 1633493100,
"latencyMs": 8100,
"settlementLayer": "ACROSS",
"source": [
{
"chain": 10,
"tokens": [
{
"token": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
"amount": "1000000"
}
],
"status": "COMPLETED",
"txHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
"timestamp": 1633493192
}
],
"destination": {
"chain": 10,
"tokens": [
{
"token": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
"amount": "1000000"
}
],
"status": "COMPLETED",
"txHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
"timestamp": 1633493192
},
"executions": [
{
"chain": 8453,
"phase": "DESTINATION",
"to": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"value": "0",
"data": "0xa9059cbb000000000000000000000000579d5631f76126991c00fb8fe5467fa9d49e5f6a00000000000000000000000000000000000000000000000000000000000f4240"
}
],
"cost": {
"sponsored": true,
"sponsoredValue": "210000",
"protocolFee": "10000"
}
}
}{
"code": "VALIDATION_ERROR",
"message": "Invalid input",
"details": [
{
"message": "<string>",
"context": {}
}
]
}{
"code": "VALIDATION_ERROR",
"message": "Invalid input",
"details": [
{
"message": "<string>",
"context": {}
}
]
}{
"code": "VALIDATION_ERROR",
"message": "Invalid input",
"details": [
{
"message": "<string>",
"context": {}
}
]
}{
"code": "VALIDATION_ERROR",
"message": "Invalid input",
"details": [
{
"message": "<string>",
"context": {}
}
]
}Intents
Get Intent
Retrieves the status of an intent along with per-claim progress across chains.
GET
/
intents
/
{id}
Get Intent
curl --request GET \
--url https://v1.orchestrator.rhinestone.dev/intents/{id} \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-version: <x-api-version>'import requests
url = "https://v1.orchestrator.rhinestone.dev/intents/{id}"
headers = {
"x-api-version": "<x-api-version>",
"x-api-key": "<x-api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'x-api-version': '<x-api-version>', 'x-api-key': '<x-api-key>'}
};
fetch('https://v1.orchestrator.rhinestone.dev/intents/{id}', 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://v1.orchestrator.rhinestone.dev/intents/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>",
"x-api-version: <x-api-version>"
],
]);
$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://v1.orchestrator.rhinestone.dev/intents/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-version", "<x-api-version>")
req.Header.Add("x-api-key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://v1.orchestrator.rhinestone.dev/intents/{id}")
.header("x-api-version", "<x-api-version>")
.header("x-api-key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://v1.orchestrator.rhinestone.dev/intents/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-version"] = '<x-api-version>'
request["x-api-key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"status": "COMPLETED",
"accountAddress": "0x3672e268a79bd4acc5ee646bdda652547c7a435c",
"operations": [
{
"chain": 10,
"items": [
{
"type": "FILL",
"status": "COMPLETED",
"txHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
"timestamp": 1633493192
}
]
}
],
"details": {
"id": "12345678901234567890",
"nonce": "0x000000000000000000000000000000000000000000000000ab54a98ceb1f0ad2",
"recipient": "0x3672e268a79bd4acc5ee646bdda652547c7a435c",
"createdAt": 1633493100,
"latencyMs": 8100,
"settlementLayer": "ACROSS",
"source": [
{
"chain": 10,
"tokens": [
{
"token": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
"amount": "1000000"
}
],
"status": "COMPLETED",
"txHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
"timestamp": 1633493192
}
],
"destination": {
"chain": 10,
"tokens": [
{
"token": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
"amount": "1000000"
}
],
"status": "COMPLETED",
"txHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
"timestamp": 1633493192
},
"executions": [
{
"chain": 8453,
"phase": "DESTINATION",
"to": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"value": "0",
"data": "0xa9059cbb000000000000000000000000579d5631f76126991c00fb8fe5467fa9d49e5f6a00000000000000000000000000000000000000000000000000000000000f4240"
}
],
"cost": {
"sponsored": true,
"sponsoredValue": "210000",
"protocolFee": "10000"
}
}
}{
"code": "VALIDATION_ERROR",
"message": "Invalid input",
"details": [
{
"message": "<string>",
"context": {}
}
]
}{
"code": "VALIDATION_ERROR",
"message": "Invalid input",
"details": [
{
"message": "<string>",
"context": {}
}
]
}{
"code": "VALIDATION_ERROR",
"message": "Invalid input",
"details": [
{
"message": "<string>",
"context": {}
}
]
}{
"code": "VALIDATION_ERROR",
"message": "Invalid input",
"details": [
{
"message": "<string>",
"context": {}
}
]
}Headers
API version. Required; pinned to this document.
Available options:
2026-04.blanc API key.
Path Parameters
Unique identifier of the intent operation
Pattern:
^\d+$Example:
"77119256265773742309930654065362693497375232736834856992878277299604179621015"
Query Parameters
Whether to include intent operation details
Example:
"true"
Response
OK
Successfully retrieved intent operation status
Overall intent status: PENDING, COMPLETED, or FAILED
Available options:
PENDING, COMPLETED, FAILED Example:
"COMPLETED"
Account address
Example:
"0x3672e268a79bd4acc5ee646bdda652547c7a435c"
Operations grouped by chain. Each chain has one or more operations (e.g. CLAIM, FILL, BRIDGE_FILL).
Show child attributes
Show child attributes
Extended intent details, returned only when full=true
Show child attributes
Show child attributes
Was this page helpful?
⌘I