Skip to main content
GET
/
v1
/
api
/
senders
/
{senderId}
Get Sender
curl --request GET \
  --url https://api.gliiv.com/v1/api/senders/{senderId} \
  --header 'X-API-Key: <x-api-key>'
{
    "id": "<string>",
    "name": "<string>",
    "balance": "<number>",
    "user": {
        "name": "<string>",
        "id": "<string>"
    },
    "createdAt": "<string>",
    "updatedAt": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://www.gliiv.com/docs/llms.txt

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

This endpoint returns the full details of a single sender identity, including its current balance and ownership information.

Path Parameters

senderId
string
required
The unique identifier of the sender you want to retrieve.

Headers

X-API-Key
string
required
Your secret API key used to authenticate the request.

Response Body

id
string
The unique identifier for the sender.
name
string
The alphanumeric label or short code.
balance
number
The specific credit balance allocated to this sender.
user
object
Information about the owner of the sender identity.
createdAt
string
The ISO 8601 timestamp of creation.
updatedAt
string
The ISO 8601 timestamp of the last update.
{
    "id": "<string>",
    "name": "<string>",
    "balance": "<number>",
    "user": {
        "name": "<string>",
        "id": "<string>"
    },
    "createdAt": "<string>",
    "updatedAt": "<string>"
}