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

# Public Geo Hint

> Best-effort visitor country + language from request headers.

Backs the Brand Intelligence preselection fallback ("if no brand is
selected, infer from the visitor"). Response is per-visitor and depends on
Cloudflare's edge geolocation, so it is `no-store` — CDN-caching it would
hand one visitor's country to the next.

Never guesses: a country/language it cannot infer comes back `null`, and
the caller decides what a null hint means.



## OpenAPI

````yaml /openapi.json get /api/v1/public/geo/hint
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/public/geo/hint:
    get:
      tags:
        - Public
      summary: Public Geo Hint
      description: >-
        Best-effort visitor country + language from request headers.


        Backs the Brand Intelligence preselection fallback ("if no brand is

        selected, infer from the visitor"). Response is per-visitor and depends
        on

        Cloudflare's edge geolocation, so it is `no-store` — CDN-caching it
        would

        hand one visitor's country to the next.


        Never guesses: a country/language it cannot infer comes back `null`, and

        the caller decides what a null hint means.
      operationId: public_geo_hint_api_v1_public_geo_hint_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````