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

# List public search-service country catalogs

> Returns the country catalogs used by public search workflow services.
This endpoint is unauthenticated and exposes the value each service expects for location/country configuration.




## OpenAPI

````yaml /openapi.yaml get /v1/public/search_services/countries
openapi: 3.0.1
info:
  title: Fetch Hive Public API
  version: v1
  description: Customer-facing Fetch Hive API endpoints for public API keys.
servers:
  - url: https://api.fetchhive.com
security: []
paths:
  /v1/public/search_services/countries:
    get:
      tags:
        - Search Services
      summary: List public search-service country catalogs
      description: >
        Returns the country catalogs used by public search workflow services.

        This endpoint is unauthenticated and exposes the value each service
        expects for location/country configuration.
      responses:
        '200':
          description: country catalogs returned
          content:
            application/json:
              schema:
                type: object
                properties:
                  services:
                    type: array
                    items:
                      type: object
                      properties:
                        service:
                          type: string
                          example: google_ai_overview
                        name:
                          type: string
                          example: Google AI Overview
                        country_value_field:
                          type: string
                          example: google_location_name
                        country_value_format:
                          type: string
                          enum:
                            - country_name
                            - alpha2
                        countries:
                          type: array
                          items:
                            type: object
                            properties:
                              country_name:
                                type: string
                                example: United States
                              alpha2:
                                type: string
                                example: US
                              value:
                                type: string
                                example: US
                            required:
                              - country_name
                              - alpha2
                              - value
                      required:
                        - service
                        - name
                        - country_value_field
                        - country_value_format
                        - countries
                required:
                  - services
      security: []

````