> ## Documentation Index
> Fetch the complete documentation index at: https://snowseo.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Bing Search Traffic

> Pull your Bing Webmaster Tools data — clicks, impressions, queries, pages, and backlinks.

Get your Bing search performance directly from **Bing Webmaster Tools** — the same data that powers the Traffic dashboard's **Bing** tab: clicks, impressions, CTR, average position, top queries, top pages, and backlinks.

<Note>
  You need a **Bing Webmaster Tools** integration connected to your team. Connect it from **Settings → Integrations → SEO & AI Tools**.
</Note>

The `prev*` fields contain the previous period's data for comparison, and `*Change` objects give you the percentage change and whether it's a positive movement.

***

## Search Queries

`GET /integrations/bing/website-traffic/search-queries`

Get the search queries driving Bing traffic to your site, sorted by clicks.

***

## Top Pages

`GET /integrations/bing/website-traffic/top-pages`

Get your best-performing pages in Bing search results.

***

## Backlinks

`GET /integrations/bing/website-traffic/backlinks`

Get backlink domains, linked pages, and anchor-text summaries from Bing.


## OpenAPI

````yaml GET /v3/integrations/bing/website-traffic/stats
openapi: 3.0.0
info:
  title: SnowSEO API
  description: API documentation for SnowSEO
  version: 1.0.0
servers:
  - url: https://api.snowseo.com
    description: Production server
security: []
tags:
  - name: Keywords
    description: Keyword research and suggestion end-points
  - name: Onboarding
    description: Brand onboarding and strategy end-points
  - name: Brands
    description: Brand management end-points
  - name: Organizations
    description: Organization and member end-points
  - name: Integrations
    description: Google Search Console and other integrations
  - name: Utilities
    description: Common utility end-points like screenshots and uploads
externalDocs:
  url: https://snowseo.com/docs
  description: Find more info here
paths:
  /v3/integrations/bing/website-traffic/stats:
    get:
      tags:
        - Bing Webmaster Tools
      summary: Get Bing traffic stats
      description: >-
        Returns Bing Webmaster Tools clicks, impressions, CTR, and position
        trends.
      operationId: getBingTrafficStats
      parameters:
        - schema:
            type: string
          in: query
          name: teamId
          required: true
          description: Team ID
        - schema:
            anyOf:
              - type: string
              - type: integer
          in: query
          name: days
          required: false
          description: Number of days to look back
        - schema:
            type: string
          in: query
          name: startDate
          required: false
          description: Start date (YYYY-MM-DD)
        - schema:
            type: string
          in: query
          name: endDate
          required: false
          description: End date (YYYY-MM-DD)
        - schema:
            type: string
          in: query
          name: limit
          required: false
          description: Maximum rows to return
      responses:
        '200':
          description: Default Response

````