LogoLogo
  • Home Page
  • Documentation
    • API Overview
    • Partner API Authentication
    • Onboarding
    • Partner Webhooks
    • Status Codes for Financial Operations
    • Prices
  • WEBSOCKETS
    • Websocket Prices
      • Prices
      • Schemas
  • API REFERENCE
    • Authorization
      • Schemas
    • User Management
      • Users
      • Schemas
    • Customers
      • General
      • Legal Entities
      • Natural Persons
      • Customer Labels
      • Search Nace Sectors
      • Onboarding Wizard
      • Schemas
    • Documents
      • Documents
      • Schemas
    • Onboardings
      • Onboarding
      • Offboarding
      • Schemas
    • Products
      • General
      • Schemas
    • Asset Management
      • Trading
        • Assets
        • Schemas
      • Digital assets
        • Create Order
        • General
        • Assets
        • Schemas
      • Strategy
        • Schemas
    • Transaction History
      • Schemas
    • Transfers
      • General
      • Create Incoming Test Transfer
      • Schemas
    • Partner Documents
      • Schemas
    • Webhooks
      • Schemas
  • PARTNER APIS
    • Partner Webhooks
      • Schemas
Powered by GitBook
On this page
  1. API REFERENCE
  2. Transfers

General

Last updated 6 days ago

Validate IBAN

get

IBAN validate

Authorizations
Path parameters
ibanstringRequired

IBAN

Pattern: ^[A-Z]{2}[0-9A-Z]{14,31}$
Responses
200
OK
application/json
400
Bad Request
application/json
get
GET /transfers/iban-validate/{iban} HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Accept: */*
{
  "iban": "text",
  "valid": true,
  "bank_data": {
    "bic": "text",
    "bank": "text",
    "bank_code": "text",
    "country": "text",
    "country_iso": "text"
  },
  "sepa_data": {
    "SCT": "text",
    "SDD": "text",
    "COR1": "text",
    "B2B": "text",
    "SCC": "text"
  },
  "validations": {
    "chars": {
      "code": "text",
      "message": "text"
    },
    "account": {
      "code": "text",
      "message": "text"
    },
    "iban": {
      "code": "text",
      "message": "text"
    },
    "structure": {
      "code": "text",
      "message": "text"
    },
    "length": {
      "code": "text",
      "message": "text"
    },
    "country_support": {
      "code": "text",
      "message": "text"
    }
  },
  "errors": [
    {
      "code": "text",
      "message": "text"
    }
  ]
}