Skip to main content
GET
/
organizations
/
{organization_id}
/
orders
/
{order_id}
Get Order
curl --request GET \
  --url https://api-sandbox.stablesea.com/v1/organizations/{organization_id}/orders/{order_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "mnyacct_01k4r01nm4f41tcsws4sr9k8nn",
    "quote_id": "qt_01k4qpmvgxfsg9db9mjrtq9tk2",
    "offering_id": "off_01k4qph5ezfsga7fkvbygsqq93",
    "reference_number": "SS-ORD-20240115-001",
    "exchange_rate": "<string>",
    "effective_exchange_rate": "<string>",
    "payin": {
      "external_payment_instrument": {
        "id": "mnyacct_01k4r01nm4f41tcsws4sr9k8nn",
        "alias": "My Primary Wallet",
        "currency": "USDC",
        "method": "SOLANA_ADDRESS",
        "status": {
          "current_status": "ACTIVE",
          "status_history": [
            {
              "status": "ACTIVE",
              "created_at": "2024-01-15T10:00:00Z"
            }
          ]
        },
        "details": {
          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
        },
        "created_at": "2024-01-15T10:00:00Z",
        "updated_at": "2024-01-15T10:00:00Z"
      },
      "total": "<string>",
      "fee": "<string>",
      "tax": "<string>"
    },
    "payout": {
      "external_payment_instrument": {
        "id": "mnyacct_01k4r01nm4f41tcsws4sr9k8nn",
        "alias": "My Primary Wallet",
        "currency": "USDC",
        "method": "SOLANA_ADDRESS",
        "status": {
          "current_status": "ACTIVE",
          "status_history": [
            {
              "status": "ACTIVE",
              "created_at": "2024-01-15T10:00:00Z"
            }
          ]
        },
        "details": {
          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
        },
        "created_at": "2024-01-15T10:00:00Z",
        "updated_at": "2024-01-15T10:00:00Z"
      },
      "total": "<string>"
    },
    "status": {
      "current_status": "STEP_1_AWAITING_FUNDING",
      "status_history": [
        {
          "status": "STEP_1_AWAITING_FUNDING",
          "created_at": "2024-01-15T10:00:00Z"
        }
      ]
    },
    "funding_instructions": {
      "currency": "USDC",
      "method": "SOLANA_ADDRESS",
      "details": {
        "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
      }
    },
    "created_at": "2024-01-15T10:00:00Z",
    "updated_at": "2024-01-15T10:00:00Z",
    "external_reference_id": "ACME-REF-001",
    "retry_order_id": "ord_01k4qn4cxdefkargtccm4ycxth"
  }
}
Retrieve details for a specific order.

Common Headers

HeaderValueRequiredDescription
AuthorizationBearer <api-key>trueYour API key for authentication
Content-Typeapplication/jsontrueContent type of the request

Path

organization_id
string
required
ID of organization
order_id
string
required
ID of order

Authorizations

Authorization
string
header
default:DEFAULT-TOKEN-HERE
required

Use your API key as the bearer token

Path Parameters

organization_id
string
required

ID of organization

Example:

"org_01k2cm4r59e5z8k5ggrbbxjcwy"

order_id
string
required

ID of order

Example:

"ord_01k4qn3cxdefkargtccm4ycxsf"

Response

200 - application/json

Order details

data
object