DriveWealth Supported Countries API

The Supported Countries API from DriveWealth — 1 operation(s) for supported countries.

Operations 1

GET /countries List Supported Countries

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/drivewealth-supported-countries-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

drivewealth-supported-countries-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DriveWealth Accounts Supported Countries API
  version: '1.0'
servers:
- url: https://bo-api.drivewealth.io/back-office
  description: Sandbox server (Uses test data)
- url: https://bo-api.drivewealth.net/back-office
  description: Production Server (Uses LIVE data)
tags:
- name: Supported Countries
  x-displayName: Supported Countries
paths:
  /countries:
    get:
      tags:
      - Supported Countries
      summary: List Supported Countries
      description: Retrieves a list of allowed countries for which users can be onboard from.
      parameters:
      - in: query
        name: status
        schema:
          type: string
          enum:
          - ACTIVE
          - INACTIVE
        required: true
        example: ACTIVE
        description: Filters on the returned countries list has inactive or active countries inside it.
      responses:
        '200':
          description: Retrieving a list of Supported Countries was Successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListOfAllowedCountries'
      security:
      - bearerAuth: []
        dwAppKey: []
      - sessionToken: []
        dwAppKey: []
components:
  schemas:
    ListOfAllowedCountry:
      type: object
      properties:
        id:
          type: string
          example: ALA
          description: The abbreviated identifier of a country.
        name:
          type: string
          example: Aland Islands
          description: The full name of the country
        code2:
          type: string
          example: AX
          description: An alternative abbreviated identifier of a country.
        code3:
          type: string
          example: ALA
          description: An alternative abbreviated identifier of a country.
        active:
          type: boolean
          example: true
          description: True, if a user can be onboarded from this country.
        expatsAllowed:
          type: boolean
          example: false
          description: True, if a user who resides outside of their country can be onboarded from the listed country.
        foreignTINNotRequired:
          type: boolean
          example: false
          description: True, if a user's tax identifier is NOT required during onboarding.
        fpslProhibited:
          type: boolean
          example: false
        supportDomicile:
          type: boolean
          example: false
        taxTreatyCountry:
          type: boolean
          example: false
          description: True, if the country has a tax treaty with the United States.
    ListOfAllowedCountries:
      type: array
      description: A list of allowed countries.
      items:
        oneOf:
        - $ref: '#/components/schemas/ListOfAllowedCountry'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    dwAppKey:
      type: apiKey
      in: header
      name: dw-client-app-key
    sessionToken:
      type: apiKey
      in: header
      name: dw-auth-token