Skip to main content
GET
/
organizations
/
{organization_id}
/
quotes
/
{quote_id}
Get Quote
curl --request GET \
  --url https://api-sandbox.stablesea.com/v1/organizations/{organization_id}/quotes/{quote_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "mnyacct_01k4r01nm4f41tcsws4sr9k8nn",
    "offering_id": "off_01k4qph5ezfsga7fkvbygsqq93",
    "exchange_rate": "<string>",
    "payin": {
      "total": "<string>",
      "fee": "<string>",
      "tax": "<string>"
    },
    "payout": {
      "total": "<string>"
    },
    "submission_expires_at": "2024-01-15T10:00:00Z",
    "funding_expires_at": "2024-01-15T10:00:00Z",
    "created_at": "2024-01-15T10:00:00Z"
  }
}
Retrieve details for a specific quote.

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
quote_id
string
required
ID of quote

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"

quote_id
string
required

ID of quote

Example:

"qt_01k4qpmvgxfsg9db9mjrtq9tk2"

Response

200 - application/json

Quote details

data
object