Detalhar pedido
curl --request GET \
--url https://api.speedsellx.io/seller/v1/orders/{id}import requests
url = "https://api.speedsellx.io/seller/v1/orders/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.speedsellx.io/seller/v1/orders/{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://api.speedsellx.io/seller/v1/orders/{id}",
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://api.speedsellx.io/seller/v1/orders/{id}"
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://api.speedsellx.io/seller/v1/orders/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.speedsellx.io/seller/v1/orders/{id}")
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{
"data": {
"id": 44,
"uuid": "359e2b90-8a75-4bf2-8d24-be27fbf9b2a8",
"status": "approved",
"status_details": "approved",
"product_id": 3194,
"customer_id": 732,
"amount": "28.79",
"amount_seller": "24.91",
"currency": "USD",
"captured_at": null,
"created_at": "2026-05-21T15:17:53-03:00"
}
}
Pedidos
Obter pedido
Retorna um pedido pelo id
GET
/
orders
/
{id}
Detalhar pedido
curl --request GET \
--url https://api.speedsellx.io/seller/v1/orders/{id}import requests
url = "https://api.speedsellx.io/seller/v1/orders/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.speedsellx.io/seller/v1/orders/{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://api.speedsellx.io/seller/v1/orders/{id}",
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://api.speedsellx.io/seller/v1/orders/{id}"
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://api.speedsellx.io/seller/v1/orders/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.speedsellx.io/seller/v1/orders/{id}")
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{
"data": {
"id": 44,
"uuid": "359e2b90-8a75-4bf2-8d24-be27fbf9b2a8",
"status": "approved",
"status_details": "approved",
"product_id": 3194,
"customer_id": 732,
"amount": "28.79",
"amount_seller": "24.91",
"currency": "USD",
"captured_at": null,
"created_at": "2026-05-21T15:17:53-03:00"
}
}
Requer o escopo
orders:read. Um pedido de outra conta retorna 404.
{
"data": {
"id": 44,
"uuid": "359e2b90-8a75-4bf2-8d24-be27fbf9b2a8",
"status": "approved",
"status_details": "approved",
"product_id": 3194,
"customer_id": 732,
"amount": "28.79",
"amount_seller": "24.91",
"currency": "USD",
"captured_at": null,
"created_at": "2026-05-21T15:17:53-03:00"
}
}
⌘I