LSD

Apple Maps Rankings

Check how businesses rank on Apple Maps for a keyword. Apple Maps feeds Siri and Apple Intelligence, which Google-based data cannot see.

When to use this

Your customers on iPhone search Apple Maps, not Google. Apple rankings are invisible to every Google-based tool, so this is the only way to know whether you show up there - and whether the competitors beating you on Google are beating you on Apple too.

POST/v1/serp/apple-maps
Cost: 3 credits ($0.015)
Rate Limit: Varies by plan
Response: ~10-20 seconds

Parameters

ParameterTypeRequiredDescription
keywordstringYesSearch keyword
locationstringYesCity and state
limitnumberNoResults to return (1-50, default 20)
sortstringNodefault (best match), distance, or ratings

Example Request

curl -X POST https://api.localseodata.com/v1/serp/apple-maps \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{ "keyword": "plumber", "location": "Buffalo, NY" }'

Example Response

JSON
{
  "status": "success",
  "credits_used": 3,
  "data": {
    "results": [
    {
      "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
    }
    ],
    "total_results": 20,
    "keyword": "plumber",
    "location": "Buffalo, NY",
    "platform": "apple"
  }
}

Response Fields

FieldTypeDescription
resultsarrayOne row per listing. Same shape on Apple and Bing, so results compare field-for-field
results[].platform_idstringApple's MUID or Bing's place_id. Stable - keep it to skip lookups on later calls
results[].rankinteger | nullPosition in the result set
results[].namestringBusiness name as the platform lists it
results[].addressstringAddress as the platform lists it - compare against your canonical NAP
results[].phonestringPhone as the platform lists it
results[].ratingnumber | nullStar rating, null when the platform shows none
results[].reviews_countintegerReview count on that platform
total_resultsintegerNumber of listings returned

Notes

  • Apple rankings are independent of Google - a business in Google's 3-pack can be invisible on Apple Maps, and the reverse.
  • Keep platform_id (Apple's MUID) from the response: passing it to the Apple Business Profile endpoint skips a lookup and lowers the cost.