cURL
curl --request POST \ --url https://api.example.com/v0/open-banking/link-token \ --header 'Content-Type: application/json' \ --data ' { "redirect_uri": "<string>", "products": [ "transactions" ], "country_codes": [ "GB" ] } '
{ "_links": { "kyc": { "description": "Submit KYC information", "href": "/v0/user/me/kyc", "method": "PUT" }, "self": { "href": "/v0/user/me", "method": "GET" }, "wallets": { "href": "/v0/wallets", "method": "GET" } } }
Custom redirect URI for OAuth callback
Plaid products to enable (transactions, auth, identity, etc.)
Country codes for supported institutions
Link token created successfully
HAL-style hypermedia links for navigation and available actions.
Show child attributes