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

# Provider/model restrictions (allowed countries)

> Returns the list of provider/model entries with the countries each one is allowed to be used in; this is global reference data shared across all projects.



## OpenAPI

````yaml https://api.mentionlab.io/api/docs-json get /api/v1/reference/provider-restrictions
openapi: 3.0.0
info:
  title: MentionLab Public API v0.3.4-rc
  description: ''
  version: 0.3.4-rc
  contact: {}
servers:
  - url: https://api.mentionlab.io
security: []
tags: []
paths:
  /api/v1/reference/provider-restrictions:
    get:
      tags:
        - Reference
      summary: Provider/model restrictions (allowed countries)
      description: >-
        Returns the list of provider/model entries with the countries each one
        is allowed to be used in; this is global reference data shared across
        all projects.
      operationId: ReferenceV1Controller_getProviderRestrictions_v1
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProviderRestrictionsMapResponseDto'
        '401':
          description: The request is missing a valid API key.
components:
  schemas:
    ProviderRestrictionsMapResponseDto:
      type: object
      properties:
        provider:
          type: string
          example: openai
          description: Provider name (e.g., openai, anthropic)
        model:
          type: string
          example: ai-mode
          description: Specific model identifier for the provider
        allowedCountries:
          example:
            - US
            - FR
          description: List of allowed ISO 3166-1 alpha-2 country codes
          type: array
          items:
            type: string
      required:
        - allowedCountries

````