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

# Get Geocoverage

> Get list of regions where Sardine is supported, separated by county and state regions



## OpenAPI

````yaml /api_reference/onramp.yaml get /geo-coverage
openapi: 3.0.3
info:
  version: '1.0'
  title: Crypto API
  description: Reference for Sardine Crypto API
  contact:
    email: support@sardine.io
    name: Sardine
    url: docs.sardine.io
servers:
  - url: https://api.sandbox.sardine.ai/v1
    description: Sandbox
  - url: https://api.sardine.ai/v1
    description: Prod Server
security: []
paths:
  /geo-coverage:
    get:
      tags:
        - Coverage
      summary: Get Geocoverage
      description: >-
        Get list of regions where Sardine is supported, separated by county and
        state regions
      operationId: get-geo
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    minItems: 1
                    uniqueItems: true
                    items:
                      type: object
                      properties:
                        countryCode:
                          type: string
                          description: 2 letter code representing a country
                          minLength: 1
                        isAllowedOnRamp:
                          type: boolean
                          description: Indicates if Sardine Onramp supports this country
                        isAllowedNFT:
                          type: boolean
                          description: Indicates if Sardine NFT supports this country
                        isBasicKycRequired:
                          type: array
                          description: >-
                            KYC requirements are satisfied without needing a
                            document proof
                          items:
                            type: string
                            enum:
                              - OnRamp
                              - OffRamp
                              - NFT
                        isSsnRequired:
                          type: array
                          description: KYC requirements include SSN verification
                          items:
                            type: string
                            enum:
                              - OnRamp
                              - OffRamp
                              - NFT
                        name:
                          type: string
                          description: Full country name
                          minLength: 1
                        supportedDocuments:
                          type: array
                          description: Type of documents that are supported
                          items:
                            type: string
                            enum:
                              - passport
                              - drivers_license
                              - identity_card
                        currencyCode:
                          type: string
                          description: Currency code for this country
                          minLength: 1
                        otpMethod:
                          type: string
                          enum:
                            - sms
                            - email
                          description: OTP method used for this country
                        paymentMethods:
                          type: array
                          minItems: 1
                          uniqueItems: true
                          items:
                            type: object
                            properties:
                              name:
                                type: string
                                description: Supported payment method name
                                minLength: 1
                              type:
                                type: string
                                enum:
                                  - card
                                  - bank
                                description: Supported payment method type
                              subType:
                                type: string
                                enum:
                                  - credit
                                  - debit
                                  - ach
                                description: Supported payment method subtype
                              subTypes:
                                type: string
                                enum:
                                  - us_credit
                                  - us_debit
                                  - ach
                                  - international_credit
                                  - international_debit
                                description: Supported payment method subtypes
                              isAllowedOnRamp:
                                type: boolean
                                description: >-
                                  Indicates if the payment method is support for
                                  Sardine Onramp
                              isAllowedNFT:
                                type: boolean
                                description: >-
                                  Indicates if the payment method is support for
                                  Sardine NFT
                        states:
                          type: array
                          items:
                            type: object
                            properties:
                              code:
                                type: string
                                description: Supported state code
                              name:
                                type: string
                                description: Supported state full name
                              isAllowedOnRamp:
                                type: boolean
                                description: >-
                                  Indicates if the state is supported for
                                  Sardine OnRamp
                              isAllowedNFT:
                                type: boolean
                                description: >-
                                  Indicates if the state is supported for
                                  Sardine NFT
                        isPayrollSupported:
                          type: boolean
                          description: >-
                            Indicates if this country is support for Sardine
                            Payroll
                x-examples:
                  example-1:
                    response:
                      - alpha2: DZ
                        alpha3: DZA
                        isAllowed: true
                        isLightKycAllowed: true
                        name: Algeria
                        supportedDocuments:
                          - passport
                        currencyCode: DZD
                        partners:
                          - name: wyre
                            isCardPayment: true
                            currencyCode: USD
      security:
        - ClientToken: []
      servers:
        - url: https://api.sandbox.sardine.ai/v1
          description: Sandbox
        - url: https://api.sardine.ai/v1
          description: Prod Server
components:
  securitySchemes:
    ClientToken:
      type: http
      scheme: basic

````