Skip to main content
FuseFuse
IntegrationsTwilioActions

Get Twilio call

Fetch a Twilio Call resource by SID.

Agent markdown

calls.get · Twilio · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
call_sidstringYesminLength 34; maxLength 34; pattern ^CA[0-9a-fA-F]{32}$

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
sidstringYesminLength 34; maxLength 34; pattern ^CA[0-9a-fA-F]{32}$
statusstringYesminLength 1; maxLength 64
fromstringYesmaxLength 32
tostringYesmaxLength 32
directionstringNomaxLength 64
durationstringNomaxLength 32
start_timestringNomaxLength 64
end_timestringNomaxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "call_sid": {
      "type": "string",
      "minLength": 34,
      "maxLength": 34,
      "pattern": "^CA[0-9a-fA-F]{32}$"
    }
  },
  "required": [
    "call_sid"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "sid": {
      "type": "string",
      "minLength": 34,
      "maxLength": 34,
      "pattern": "^CA[0-9a-fA-F]{32}$"
    },
    "status": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "from": {
      "type": "string",
      "maxLength": 32
    },
    "to": {
      "type": "string",
      "maxLength": 32
    },
    "direction": {
      "type": "string",
      "maxLength": 64
    },
    "duration": {
      "type": "string",
      "maxLength": 32
    },
    "start_time": {
      "type": "string",
      "maxLength": 64
    },
    "end_time": {
      "type": "string",
      "maxLength": 64
    }
  },
  "required": [
    "sid",
    "status",
    "from",
    "to"
  ]
}