Skip to main content
GET
https://api.getmalakai.com/
callers
/
get-twilio-bundle
curl --request GET \ 
--url 'callers/get-twilio-bundle?isoCountry=US' \ 
--header 'Authorization: Bearer YOUR_API_KEY' 
{
    "responseCode": 2000,
    "message": "Twilio bundle fetched successfully",
    "data": {
        "sid": "***",
        "accountSid": "***",
        "regulationSid": "***",
        "friendlyName": "Malakai",
        "status": "twilio-approved",
        "validUntil": null,
        "email": "***",
        "statusCallback": null,
        "dateCreated": "2025-01-23T08:48:22.000Z",
        "dateUpdated": "2025-01-24T14:55:53.000Z",
        "url": "****",
        "links": {***}
    }
}

Headers

Authorization
string
required
Your API key for authentication. Prefix with Bearer .
x-access-token
string
required
Your access token for authentication.

Query Parameters

isoCountry
string
required
The 2-letter ISO 3166-1 alpha-2 country code. For example, US for the United States or CA for Canada.
curl --request GET \ 
--url 'callers/get-twilio-bundle?isoCountry=US' \ 
--header 'Authorization: Bearer YOUR_API_KEY' 

Response

Returns an array of available Twilio Regulatory Bundles.
message
string
Status of the request in the form of a short message.
data
object[]
An array of bundle objects.
{
    "responseCode": 2000,
    "message": "Twilio bundle fetched successfully",
    "data": {
        "sid": "***",
        "accountSid": "***",
        "regulationSid": "***",
        "friendlyName": "Malakai",
        "status": "twilio-approved",
        "validUntil": null,
        "email": "***",
        "statusCallback": null,
        "dateCreated": "2025-01-23T08:48:22.000Z",
        "dateUpdated": "2025-01-24T14:55:53.000Z",
        "url": "****",
        "links": {***}
    }
}