Skip to main content
GET
/
sender-ids
Get sender IDs
curl --request GET \
  --url https://api.otpiq.com/api/sender-ids \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "_id": "507f1f77bcf86cd799439011",
      "senderId": "OTPIQ",
      "status": "accepted",
      "pricePerSms": {
        "korekTelecom": 80,
        "asiaCell": 80,
        "zainIraq": 80,
        "others": 100
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Format: Bearer sk_live_your_api_key_here

Response

Sender IDs retrieved successfully. Response body includes: success (boolean), data (array of SenderId).

success
boolean
required

Whether the request was successful

Examples:

true

data
object[]
required

Array of sender IDs

I