cURL
curl --request POST \
--url https://chat.aomi.dev/v1/pipeline/evm/simulate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://chat.aomi.dev/v1/pipeline/evm/simulate"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://chat.aomi.dev/v1/pipeline/evm/simulate', 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://chat.aomi.dev/v1/pipeline/evm/simulate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://chat.aomi.dev/v1/pipeline/evm/simulate"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://chat.aomi.dev/v1/pipeline/evm/simulate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://chat.aomi.dev/v1/pipeline/evm/simulate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"version": 2,
"status": "staged",
"actions": "<array>",
"origin": {
"app": "<string>",
"operations": "<array>",
"skills": [
"<string>"
]
},
"expiresAt": 123,
"digest": "<string>",
"attestation": "<string>",
"simulation": {
"status": "passed",
"balanceChanges": [
{
"asset": "<string>",
"amount": "<string>",
"account": "<string>",
"direction": "in",
"symbol": "<string>",
"decimals": 123,
"chainId": 123,
"cluster": "<string>",
"standard": "native",
"name": "<string>",
"tokenId": "<string>",
"counterparty": "<string>",
"step": 2
}
],
"approvals": [
{
"account": "<string>",
"spender": "<string>",
"asset": "<string>",
"kind": "allowance",
"standard": "native",
"amount": "<string>",
"approved": true,
"unlimited": true,
"tokenId": "<string>",
"symbol": "<string>",
"name": "<string>",
"decimals": 123,
"chainId": 123,
"step": 2
}
],
"fees": [
{
"asset": "<string>",
"amount": "<string>",
"account": "<string>",
"symbol": "<string>",
"decimals": 123,
"chainId": 123,
"cluster": "<string>",
"kind": "<string>"
}
],
"warnings": [
"<string>"
],
"guards": [
{
"name": "<string>",
"status": "passed",
"message": "<string>"
}
],
"gas": {
"units": "<string>",
"priceWei": "<string>",
"nativeCost": "<string>"
},
"logs": [
{
"address": "<string>",
"topics": [
"<string>"
],
"data": "<string>",
"chainId": 123,
"cluster": "<string>",
"step": 2
}
]
},
"summary": "<unknown>"
}{
"error": "<unknown>"
}{
"error": "<unknown>"
}{
"error": "<unknown>"
}EVM lifecycle
Post v1pipelineevmsimulate
Stateless chain lifecycle operation. The complete portable Build moves by value; commit revalidates and re-simulates before custody.
POST
/
v1
/
pipeline
/
evm
/
simulate
cURL
curl --request POST \
--url https://chat.aomi.dev/v1/pipeline/evm/simulate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://chat.aomi.dev/v1/pipeline/evm/simulate"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://chat.aomi.dev/v1/pipeline/evm/simulate', 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://chat.aomi.dev/v1/pipeline/evm/simulate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://chat.aomi.dev/v1/pipeline/evm/simulate"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://chat.aomi.dev/v1/pipeline/evm/simulate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://chat.aomi.dev/v1/pipeline/evm/simulate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"version": 2,
"status": "staged",
"actions": "<array>",
"origin": {
"app": "<string>",
"operations": "<array>",
"skills": [
"<string>"
]
},
"expiresAt": 123,
"digest": "<string>",
"attestation": "<string>",
"simulation": {
"status": "passed",
"balanceChanges": [
{
"asset": "<string>",
"amount": "<string>",
"account": "<string>",
"direction": "in",
"symbol": "<string>",
"decimals": 123,
"chainId": 123,
"cluster": "<string>",
"standard": "native",
"name": "<string>",
"tokenId": "<string>",
"counterparty": "<string>",
"step": 2
}
],
"approvals": [
{
"account": "<string>",
"spender": "<string>",
"asset": "<string>",
"kind": "allowance",
"standard": "native",
"amount": "<string>",
"approved": true,
"unlimited": true,
"tokenId": "<string>",
"symbol": "<string>",
"name": "<string>",
"decimals": 123,
"chainId": 123,
"step": 2
}
],
"fees": [
{
"asset": "<string>",
"amount": "<string>",
"account": "<string>",
"symbol": "<string>",
"decimals": 123,
"chainId": 123,
"cluster": "<string>",
"kind": "<string>"
}
],
"warnings": [
"<string>"
],
"guards": [
{
"name": "<string>",
"status": "passed",
"message": "<string>"
}
],
"gas": {
"units": "<string>",
"priceWei": "<string>",
"nativeCost": "<string>"
},
"logs": [
{
"address": "<string>",
"topics": [
"<string>"
],
"data": "<string>",
"chainId": 123,
"cluster": "<string>",
"step": 2
}
]
},
"summary": "<unknown>"
}{
"error": "<unknown>"
}{
"error": "<unknown>"
}{
"error": "<unknown>"
}Authorizations
Better Auth OAuth 2.1 authorization-code/device grants. Access tokens are exact-resource bound; the Portal BFF verifies them and delegates a downscoped internal bearer.
Body
application/json
Build request, explicit stage input, or a complete portable Build envelope depending on the endpoint.
Response
Portable chain-specific Build or commit result
Available options:
staged, simulated App, skills, and Catalog operations that assembled the actions.
Show child attributes
Show child attributes
Unix timestamp after which commit is rejected.
Pattern:
^sha256:[0-9a-f]{64}$Server authentication of the Build, its owner, and app scope.
Show child attributes
Show child attributes
Last modified on September 24, 2026
Was this page helpful?