Skip to main content
GET
/
v1.0
/
message
/
filter
cURL
curl -X GET 'https://api.telegent.com/v1.0/message/filter?PhoneNumber=%2B11234567890&Page=1&Results=25' \
  -H 'Authorization: Bearer YOUR_TOKEN'
{
  "Messages": [
    {
      "MessageId": "MSG-abc123",
      "From": "+11234567890",
      "To": "+10987654321",
      "Body": "Hello world",
      "Direction": "outbound",
      "Status": "delivered",
      "CreatedAt": "2025-05-01T12:00:00Z"
    }
  ],
  "Page": 1,
  "Results": 25,
  "Total": 100
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Enter the token obtained from the Authentication endpoint

Query Parameters

PhoneNumber
string

The phone number to filter messages for (E.164 format)

Page
integer

Page number for pagination

Results
integer

Number of results per page

Response

200 - application/json

Success — returns a paginated list of filtered messages

The response is of type object.