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

# List shipping regions



## OpenAPI

````yaml get /api/ext/v1/shipping-regions
openapi: 3.0.1
info:
  title: Covver External API docs
  description: Covver External API docs
  version: 0.1.0
servers:
  - url: https://staging-api.covver.io
    description: Covver Staging Server
  - url: https://api.covver.io
    description: Covver Production Server
  - url: http://localhost:8080
    description: Covver Local Server
security:
  - BearerAuth: []
tags:
  - name: Auth
    description: Authentication endpoints
  - name: Products
    description: Product endpoints
  - name: People
    description: People endpoints
  - name: Orders
    description: Orders endpoints
  - name: Reports
    description: Report endpoints
externalDocs:
  url: https://swagger.io
  description: Find more info here
paths:
  /api/ext/v1/shipping-regions:
    get:
      tags:
        - shipping
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    countryName:
                      type: string
                    countryCode:
                      type: string
                    isBlacklisted:
                      type: boolean
                    denyCheckout:
                      type: boolean
                    provinces:
                      type: array
                      items:
                        type: object
                        properties:
                          provinceName:
                            type: string
                          provinceCode:
                            type: string
                        required:
                          - provinceName
                          - provinceCode
                      nullable: true
                  required:
                    - countryName
                    - countryCode
                    - isBlacklisted
                    - denyCheckout
                  additionalProperties: false
              example:
                countryName: United States
                countryCode: US
                isBlacklisted: false
                denyCheckout: false
                provinces:
                  - provinceName: California
                    provinceCode: CA
        4XX:
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errorCode:
                    type: string
                  error: {}
                  statusCode:
                    type: number
                required:
                  - message
                  - errorCode
                  - statusCode
        5XX:
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errorCode:
                    type: string
                  error: {}
                  statusCode:
                    type: number
                required:
                  - message
                  - errorCode
                  - statusCode
      security: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````