# Get subscription location This endpoint retrieves the location information of a specific subscription associated with an eSIM, identified by its ICCID. It provides information about the last operator the SIM was connected to, including country, operator name, and technical details. Important: This endpoint only returns data if the SIM has been active in the last 7 days. If the SIM has not been active during this period, the last_operator field will be null. Endpoint: GET /v3/subscriptions/{iccid}/location Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `iccid` (string, required) The ICCID of the subscription Example: "8937204017179541233" ## Response 200 fields (application/json): - `error` (boolean, required) Indicates if there was an error with the request - `last_operator` (object,null, required) Information about the last operator the SIM was connected to. Returns null if the SIM has not been active in the last 7 days. - `last_operator.country` (string, required) The country where the SIM was last active Example: "Jordan" - `last_operator.country_alpha_2` (string, required) The 2-letter ISO country code Example: "jo" - `last_operator.operator` (string, required) The mobile operator name Example: "ZAIN Jordan" - `last_operator.rat` (string, required) The Radio Access Technology used Example: "4G - LTE" - `last_operator.imei` (string, required) The IMEI of the device Example: "356703224849612" ## Response 401 fields (application/json): - `error` (boolean, required) Indicates whether an error occurred during the request Example: true - `message` (string, required) Error message describing the unauthorized access Example: "Unauthorized: API key is missing"