Sync messages data with Twilio through Apideck's unified API. One integration, instant access.
List, Create, Get, Delete operations available through our unified API
Fields available for Twilio Messages
idfromtobodynumber_of_unitsnumber_of_media_filesdirectionstatussent_atwebhook_urlpricemessaging_service_idupdated_atcreated_atSample response structure for messages
{
"id": "12345",
"from": "string",
"to": "string",
"body": "string",
"number_of_units": 10,
"number_of_media_files": 10,
"direction": "string",
"status": "active",
"sent_at": "2024-01-15T10:30:00.000Z",
"webhook_url": "https://example.com",
"price": 100,
"messaging_service_id": "12345",
"updated_at": "2024-01-15T10:30:00.000Z",
"created_at": "2024-01-15T10:30:00.000Z"
}Start syncing Twilio messages in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List messages from Twilio
const result = await apideck.sms.messages.list({
serviceId: 'twilio'
})
for await (const page of result) {
console.log(page)
}
// Returns unified messages dataWe build and maintain connectors, so you don't have to. View our full list of SMS connectors.
Missing a connector? We're able to add new connectors.
Build Twilio integrations in your favorite language with our official SDKs.
Build Twilio integrations with the official Node.js SDK.
Build Twilio integrations with the official TypeScript SDK.
Build Twilio integrations with the official PHP SDK.
Build Twilio integrations with the official .NET.
Build Twilio integrations with the official Python SDK.
Build Twilio integrations with the official Java SDK.
Build Twilio integrations with the official Go SDK.