Skip to main content
GET
/
v1
/
numbers
/
{id}
Get Number
curl --request GET \
  --url https://api.production.telgea.com/v1/numbers/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "phoneNumber": "<string>",
  "owner": {
    "id": "<string>"
  },
  "simDetails": {
    "iccid": "<string>",
    "imsi": "<string>",
    "pin1": "<string>",
    "pin2": "<string>",
    "puk1": "<string>",
    "puk2": "<string>",
    "activationCode": "<string>"
  },
  "createdAt": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key authentication requiring a valid API key to be included in the X-API-Key header.

Path Parameters

id
string
required

Response

Retrieves detailed information about a specific account number, including SIM and owner details.

id
string
required

Unique identifier of the account number

owner
object
required

Details about the owner of the number

createdAt
string
required

Timestamp when the account number was created

phoneNumber
string

Phone number assigned to the account

simDetails
object

Details about the SIM card associated with the account

I