Skip to main content
FuseFuse
IntegrationsTwilioActions

Lookup Twilio phone number

Lookup phone number metadata with Twilio Lookup v2.

Agent markdown

lookups.phone_numbers.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
phone_numberstringYesminLength 2; maxLength 16; pattern ^\+[1-9]\d{1,14}$
fieldsarray<string>NomaxItems 8
fields[]stringYesminLength 1; maxLength 64; enum line_type_intelligence | caller_name

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
phone_numberstringYesmaxLength 32
country_codestringNomaxLength 8
national_formatstringNomaxLength 64
calling_country_codestringNomaxLength 8
validbooleanYes
line_typestringNomaxLength 64
caller_namestringNomaxLength 200

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "phone_number": {
      "type": "string",
      "minLength": 2,
      "maxLength": 16,
      "pattern": "^\\+[1-9]\\d{1,14}$"
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 64,
        "enum": [
          "line_type_intelligence",
          "caller_name"
        ]
      },
      "maxItems": 8
    }
  },
  "required": [
    "phone_number"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "phone_number": {
      "type": "string",
      "maxLength": 32
    },
    "country_code": {
      "type": "string",
      "maxLength": 8
    },
    "national_format": {
      "type": "string",
      "maxLength": 64
    },
    "calling_country_code": {
      "type": "string",
      "maxLength": 8
    },
    "valid": {
      "type": "boolean"
    },
    "line_type": {
      "type": "string",
      "maxLength": 64
    },
    "caller_name": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "phone_number",
    "valid"
  ]
}