Apple Maps Business Profile
Fetch one business's Apple Maps listing - name, address, phone, rating, categories, coordinates.
When to use this
You want to know whether your Apple Business Connect profile exists and whether its NAP matches everywhere else. An unclaimed or wrong Apple listing is invisible to Google-based audits but very visible to anyone using Siri or Maps on an iPhone.
POST
/v1/business/apple-profileCost: 5 credits ($0.025), or 3 credits ($0.015) with muid
Rate Limit: Varies by plan
Response: ~10-25 seconds
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| business_name | string | Yes | Business name |
| location | string | Yes | City and state |
| muid | string | No | Apple MUID from a previous response. Skips the name-resolution search and lowers the cost to 3 credits |
Example Request
curl -X POST https://api.localseodata.com/v1/business/apple-profile \
-H "Authorization: Bearer sk_live_your_key" \
-H "Content-Type: application/json" \
-d '{ "business_name": "Acme Plumbing", "location": "Buffalo, NY" }'Example Response
JSON
{
"status": "success",
"credits_used": 5,
"data": {
"matched": true,
"platform": "apple",
"listing": {
"platform": "apple",
"platform_id": "18366846785603624515",
"rank": 1,
"name": "Acme Plumbing",
"address": "412 Main St, Buffalo, NY 14202",
"phone": "(716) 555-0123",
"website": "https://acmeplumbing.example.com",
"rating": 4.6,
"reviews_count": 182,
"categories": ["Plumber"],
"latitude": 42.8864,
"longitude": -78.8784
},
"business_name": "Acme Plumbing",
"location": "Buffalo, NY"
}
}Response Fields
| Field | Type | Description |
|---|---|---|
| matched | boolean | Whether a listing was found for this business |
| listing | object | null | The listing, or null when nothing matched. Same shape as a results[] row |
| listing.platform_id | string | Apple's MUID or Bing's place_id |
| listing.address | string | Address as the platform lists it |
| listing.phone | string | Phone as the platform lists it |
Notes
- matched:false with listing:null means no Apple listing was found - usually an unclaimed Apple Business Connect profile. That is a finding, not an error.
- The lookup never guesses: if nothing matches the business name it returns unmatched rather than a different business.
- Store listing.platform_id and pass it back as muid on later calls - repeat checks then cost 3 credits instead of 5.