curl --request POST \
--url https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"signedPayload": "0x1234567890abcdef...",
"actionId": "550e8400-e29b-41d4-a716-446655440001",
"transactionHash": "0xabcdef1234567890..."
}
'import requests
url = "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit"
payload = {
"signedPayload": "0x1234567890abcdef...",
"actionId": "550e8400-e29b-41d4-a716-446655440001",
"transactionHash": "0xabcdef1234567890..."
}
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({
signedPayload: '0x1234567890abcdef...',
actionId: '550e8400-e29b-41d4-a716-446655440001',
transactionHash: '0xabcdef1234567890...'
})
};
fetch('https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit', 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://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit",
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([
'signedPayload' => '0x1234567890abcdef...',
'actionId' => '550e8400-e29b-41d4-a716-446655440001',
'transactionHash' => '0xabcdef1234567890...'
]),
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://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit"
payload := strings.NewReader("{\n \"signedPayload\": \"0x1234567890abcdef...\",\n \"actionId\": \"550e8400-e29b-41d4-a716-446655440001\",\n \"transactionHash\": \"0xabcdef1234567890...\"\n}")
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://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"signedPayload\": \"0x1234567890abcdef...\",\n \"actionId\": \"550e8400-e29b-41d4-a716-446655440001\",\n \"transactionHash\": \"0xabcdef1234567890...\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit")
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 = "{\n \"signedPayload\": \"0x1234567890abcdef...\",\n \"actionId\": \"550e8400-e29b-41d4-a716-446655440001\",\n \"transactionHash\": \"0xabcdef1234567890...\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"link": "https://app.hyperliquid.xyz/exchange",
"status": "CONFIRMED",
"transactionHash": "0x1234567890abcdef...",
"error": "<string>",
"details": {}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "yield-xyz-borrow returned a response for GET /v1/positions that does not match the expected schema",
"id": "INTEGRATION_RESPONSE_SCHEMA_DRIFT",
"details": {
"integration": "yield-xyz-borrow",
"endpoint": "GET /v1/positions",
"issues": [
{
"path": "supplyBalances.0.balanceUsd",
"message": "Expected string, received number",
"code": "invalid_type"
}
]
}
}{
"error": "<string>"
}Submit a signed transaction
Submit a signed payload for the venue to broadcast, or report a transaction hash you broadcast yourself. At least one of signedPayload or transactionHash is required.
This is a proxy to the Yield.xyz Perps POST /v1/transactions/{transactionId}/submit endpoint. Portal validates the upstream response against the schema documented here before returning it under data. If Yield.xyz changes the response shape, Portal returns a 500 with id: INTEGRATION_RESPONSE_SCHEMA_DRIFT instead of a partial response. Upstream reference: Yield.xyz Perps API.
curl --request POST \
--url https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"signedPayload": "0x1234567890abcdef...",
"actionId": "550e8400-e29b-41d4-a716-446655440001",
"transactionHash": "0xabcdef1234567890..."
}
'import requests
url = "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit"
payload = {
"signedPayload": "0x1234567890abcdef...",
"actionId": "550e8400-e29b-41d4-a716-446655440001",
"transactionHash": "0xabcdef1234567890..."
}
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({
signedPayload: '0x1234567890abcdef...',
actionId: '550e8400-e29b-41d4-a716-446655440001',
transactionHash: '0xabcdef1234567890...'
})
};
fetch('https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit', 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://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit",
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([
'signedPayload' => '0x1234567890abcdef...',
'actionId' => '550e8400-e29b-41d4-a716-446655440001',
'transactionHash' => '0xabcdef1234567890...'
]),
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://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit"
payload := strings.NewReader("{\n \"signedPayload\": \"0x1234567890abcdef...\",\n \"actionId\": \"550e8400-e29b-41d4-a716-446655440001\",\n \"transactionHash\": \"0xabcdef1234567890...\"\n}")
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://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"signedPayload\": \"0x1234567890abcdef...\",\n \"actionId\": \"550e8400-e29b-41d4-a716-446655440001\",\n \"transactionHash\": \"0xabcdef1234567890...\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-perps/transactions/{transactionId}/submit")
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 = "{\n \"signedPayload\": \"0x1234567890abcdef...\",\n \"actionId\": \"550e8400-e29b-41d4-a716-446655440001\",\n \"transactionHash\": \"0xabcdef1234567890...\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"link": "https://app.hyperliquid.xyz/exchange",
"status": "CONFIRMED",
"transactionHash": "0x1234567890abcdef...",
"error": "<string>",
"details": {}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "yield-xyz-borrow returned a response for GET /v1/positions that does not match the expected schema",
"id": "INTEGRATION_RESPONSE_SCHEMA_DRIFT",
"details": {
"integration": "yield-xyz-borrow",
"endpoint": "GET /v1/positions",
"issues": [
{
"path": "supplyBalances.0.balanceUsd",
"message": "Expected string, received number",
"code": "invalid_type"
}
]
}
}{
"error": "<string>"
}Authorizations
Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.
Path Parameters
Transaction id (from an action's transactions[].id).
Body
- Option 1
- Option 2
A signed payload (with its actionId) or a broadcast tx hash — at least one is required.
The signed payload for the venue to broadcast.
"0x1234567890abcdef..."
Required when submitting a signedPayload (omit it for a transactionHash self-broadcast). The id of the action this transaction belongs to. For an EIP-712 transaction, Portal verifies the signature recovers to the account the action was built for before forwarding, and returns a 400 if it does not (id: PERPS_SIGNATURE_ADDRESS_MISMATCH), if the signature cannot be recovered at all (id: PERPS_SIGNATURE_INVALID), or if the payload cannot be hashed for verification (id: PERPS_SIGNATURE_UNVERIFIABLE). Requiring it guards against a signed action being forwarded without the signer being verified.
"550e8400-e29b-41d4-a716-446655440001"
The hash of a transaction you broadcast yourself.
"0xabcdef1234567890..."
Response
Submission result
Result of submitting a signed transaction or broadcast hash.
Show child attributes
Show child attributes
Was this page helpful?