Bing Places Business Profile
Fetch one business's Bing Maps listing - name, address, phone, rating, coordinates.
When to use this
Bing Places is a standard citation, and its data reaches Copilot and ChatGPT. A wrong phone number here propagates into AI answers about your business, where it is far harder to notice than on a directory page.
POST
/v1/business/bing-profileCost: 3 credits ($0.015)
Rate Limit: Varies by plan
Response: ~10-20 seconds
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| business_name | string | Yes | Business name |
| location | string | Yes | City and state |
Example Request
curl -X POST https://api.localseodata.com/v1/business/bing-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": 3,
"data": {
"matched": true,
"platform": "bing",
"listing": {
"platform": "bing",
"platform_id": "YN873x104623456",
"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 means Bing Places was likely never claimed - a finding worth reporting to the client.
- One upstream call: Bing returns full NAP inline, so there is no separate detail step and no cheaper cached path.