Skip to main content
GET
/
simcards
/
configurations
/
{id}
Get a SIM Configuration
curl --request GET \
  --url https://dashboard.hologram.io/api/1/simcards/configurations/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "data": {
    "id": 1,
    "name": "G3",
    "description": "Standard G3 configuration",
    "enabled_carrier_id": 13,
    "fallback_carrier_id": 13,
    "disabled_carrier_ids": [],
    "vzw_sku": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.hologram.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.

You can find your API key on the Hologram Dashboard under Account Settings.

Path Parameters

id
integer
required

ID of the SIM configuration to retrieve.

Example:

5

Response

OK

Response envelope containing a single SIM configuration.

success
boolean

Whether the request was successful or not

Example:

true

data
object

An eUICC SIM configuration defining which carrier profile to enable, which to use as fallback, and which to disable.