Getting Started

Make your first API call in under 5 minutes

1

Create an Account

Sign up for a free developer account to get started.

Create Account
2

Create an API Key

After logging in, go to Dashboard > API Keys and create a new API key (Consumer). You'll need the consumer_key for authentication.

3

Authenticate

Use DirectLogin to authenticate and get an access token:

// Get access token
POST /my/logins/direct
Headers:
  Content-Type: application/json
  DirectLogin: username="YOUR_USERNAME",
               password="YOUR_PASSWORD",
               consumer_key="YOUR_CONSUMER_KEY"

Response:
{
  "token": "eyJ0..."
}
4

Make API Calls

Include your token in the Authorization header for all API requests:

// Get your accounts
GET /obp/v5.1.0/my/accounts
Headers:
  Authorization: DirectLogin token="YOUR_TOKEN"

Response:
{
  "accounts": [
    {
      "id": "account-123",
      "bank_id": "bank-456",
      "label": "My Account",
      ...
    }
  ]
}