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

# Website Top Geographies

> Website Top Geographies — SimilarWeb



## OpenAPI

````yaml openapi/similarweb.json GET /similarweb/website-top-geographies
openapi: 3.0.3
info:
  title: SimilarWeb API
  version: 1.0.0
  description: >-
    SimilarWeb digital-intelligence data routed through the AIsa gateway:
    website traffic & engagement, ranking, traffic sources, audience, website
    content, and keyword/search insights.


    **Billing model**: SimilarWeb uses a two-phase (pre-authorization ->
    settlement) credit-based model, not a fixed unit price. (1) Before the call,
    an upper bound is estimated from the request dimensions and pre-authorized
    (response header `X-AISA-Estimated-Credits`); (2) the upstream call is made;
    (3) actual consumption is settled (response headers
    `X-AISA-Accounted-Credits`, `X-AISA-Price-USD`).

    - Billing dimensions: metrics x countries x time buckets (time-series
    endpoints); number of returned rows (list endpoints, capped at 20 rows,
    excess auto-truncated).

    - Countries: each country multiplies the cost once; world/global is
    normalized to world.

    - Settlement rounds up to whole credits; charged only when HTTP 2xx and data
    is non-empty; 4xx/5xx or empty data is not charged.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /similarweb/website-top-geographies:
    get:
      summary: Website Top Geographies
      description: >-
        Top countries by share of a domain's traffic for the latest available
        month (data.countries, up to 10 rows with country_code, country_name,
        share and visits). Geography coverage is worldwide (ww) and fixed: a
        country parameter is not accepted for this endpoint.
      operationId: similarwebWebsiteTopGeographies
      parameters:
        - name: domain
          in: query
          required: true
          description: Target domain, e.g. example.com.
          schema:
            type: string
      responses:
        '200':
          description: >-
            SimilarWeb traffic response (meta + data). data.countries is ranked
            by traffic share (highest first).
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    type: object
                    properties:
                      country:
                        type: string
                      end_date:
                        type: string
                      granularity:
                        type: string
                      request_id:
                        type: string
                      retrieved_at:
                        type: string
                      source:
                        type: string
                      start_date:
                        type: string
                  data:
                    type: object
                    properties:
                      countries:
                        type: array
                        items:
                          type: object
                          properties:
                            country_code:
                              type: string
                            country_name:
                              type: string
                            rank:
                              type: integer
                              nullable: true
                            share:
                              type: number
                            visits:
                              type: number
              example:
                data:
                  countries:
                    - country_code: us
                      country_name: United States
                      rank: null
                      share: 0.8135986038373749
                      visits: 184871830.97664917
                    - country_code: ca
                      country_name: Canada
                      rank: null
                      share: 0.1250244855835728
                      visits: 28408978.896636344
                    - country_code: gb
                      country_name: United Kingdom
                      rank: null
                      share: 0.0046361238147776184
                      visits: 1053453.9934433121
                    - country_code: in
                      country_name: India
                      rank: null
                      share: 0.004525631464841616
                      visits: 1028347.1127957336
                    - country_code: au
                      country_name: Australia
                      rank: null
                      share: 0.0038766416446363557
                      visits: 880878.8947080157
                    - country_code: za
                      country_name: South Africa
                      rank: null
                      share: 0.0032450884260539874
                      visits: 737372.7488913544
                    - country_code: sg
                      country_name: Singapore
                      rank: null
                      share: 0.0029357496450864123
                      visits: 667082.5264649267
                    - country_code: de
                      country_name: Germany
                      rank: null
                      share: 0.002332122537702222
                      visits: 529921.9560768788
                    - country_code: nl
                      country_name: Netherlands
                      rank: null
                      share: 0.0022503248115619393
                      visits: 511335.2779164732
                    - country_code: nz
                      country_name: New Zealand
                      rank: null
                      share: 0.002059521596153513
                      visits: 467979.5744744864
                meta:
                  country: ww
                  end_date: 2026-07
                  granularity: monthly
                  request_id: >-
                    imc_7d699adfa9e84a0e867521b2d071c2bb35f887a6f6b7c1e5d95067a1dfc2f2fa
                  retrieved_at: '2026-08-27T14:47:22.508241524Z'
                  source: similarweb
                  start_date: 2026-07
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````