Skip to main content
GET
/
api
/
v2
/
senderlist
Get your approved Sender IDs
curl --request GET \
  --url https://api.vodafone.com/api/v2/senderlist \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "FreeText",
    "type": 1
  },
  {
    "name": "353851234567",
    "type": 2
  },
  {
    "name": "Vodafone",
    "type": 0
  }
]

Documentation Index

Fetch the complete documentation index at: https://developers.vfbulk.ie/llms.txt

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

Authorizations

Authorization
string
header
required

Get a JWT access token from https://auth.vodafone.com/token. Pass it in the Authorization header as Bearer {token} when calling Vodafone Bulk Text API endpoints.

Response

Sender IDs returned successfully.

name
string
required

Sender ID value available on the account.

type
enum<integer>
required

The Sender ID type:

  • 0 = ComReg Sender ID
  • 1 = International non-ComReg approved Sender ID (will not send to Irish numbers)
  • 2 = Numeric Sender ID
Available options:
0,
1,
2
Last modified on May 6, 2026