telephone
telephone · Recommended
Appears in
What is it?
The primary phone number for a business, formatted as a text string. For LocalBusiness schema, telephone should be the main contact number that customers use to reach the business, not an internal extension or fax line.
Why this matters for AEO
When a user asks "What is the phone number for [business]?" or says "Call [business]," AI assistants pull the telephone field directly to display or dial. On mobile devices, a properly structured phone number in schema can trigger click-to-call functionality in search results and AI-generated answers. Without it, the AI must scrape the page and guess which number is the main line.
What the specs say
Schema.org: Text. The telephone number. schema.org/telephone
Google: Recommended. "A business phone number meant to be the primary contact method for customers." Google LocalBusiness docs
How to find your value
- Google Business Profile — The phone number listed on your GBP
- Website header/footer — The main number displayed to visitors
- Business cards — The primary contact number
For international businesses, include the country code (e.g., +1 for US/Canada, +44 for UK). This ensures the number works for users searching from any country.
Format and code
Text string. Include the country code for clarity.
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Beachwalk Beachwear & Giftware",
"telephone": "850-648-4200"
}
With country code (recommended for international visibility):
{
"telephone": "+1-850-648-4200"
}
With parentheses (also valid):
{
"telephone": "(408) 714-1489"
}
Schema.org accepts any reasonable text format. Google can parse most common phone number formats, but using E.164 format (+1XXXXXXXXXX) or a consistent delimiter pattern improves reliability.
Webflow implementation
Static pages
Add the phone number directly in your JSON-LD block in Page Settings > Custom Code > Before