OpenAPI 3.1.0raw.githubusercontent.com2026-08-191,3412,1385.0 MB

ec31f78cf002

SIM Card Orders

Preview SIM card orders

Previews a SIM card order purchase, returning estimated costs and details before you place the order. The preview is processed asynchronously.

post/sim_card_order_preview

Request body

address_idstring required

Uniquely identifies the address for the order.

quantityinteger required

The amount of SIM cards that the user would like to purchase in the SIM card order.

Example request

{
  "address_id": "1293384261075731499",
  "quantity": 21
}

Response

Successful Response

Example response

{
  "data": {
    "quantity": 21,
    "record_type": "sim_card_order_preview",
    "shipping_cost": {
      "amount": "2.32",
      "currency": "USD"
    },
    "sim_cards_cost": {
      "amount": "2.32",
      "currency": "USD"
    },
    "total_cost": {
      "amount": "2.32",
      "currency": "USD"
    }
  }
}