# Bing Keyword Rank Checker via API

**Use case:** 

Check where a domain ranks on Bing for any keyword, by city and device, and get position and page as JSON you can automate. Not another widget.

## Input

```json
{
  "query": "seo tools",
  "max_pages": 3,
  "include_ads": false,
  "location": "New York, New York",
  "safe_search": "Moderate",
  "device": "desktop"
}
```

## Output

```json
{
  "resultType": {
    "label": "Result type",
    "format": "string"
  },
  "page": {
    "label": "Page",
    "format": "integer"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "displayedUrl": {
    "label": "Displayed URL",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bing Search API | SERP, Rank Tracking and Ads Data](https://apify.com/johnvc/bing-search-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/bing-search-api) to learn more, explore other use cases, and run it yourself.