Interactive API Playground

Test CoreBank Payment Gateway APIs with live mock responses

All systems operational
Response time: <200ms99.97% uptime

API Endpoints

Live Performance

Avg Response147ms
Success Rate99.97%
Requests Today2,847

Initiate Wire Transfer

POST

Create a new wire transfer with real-time processing

POSThttps://api.corebank.com/v2/payments/wire/initiate

Live Response

Click "Execute API Call" to see live response

Responses are generated in real-time

Integration Examples

cURL

curl -X POST \
  "https://api.corebank.com/v2/payments/wire/initiate" \
  -H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
  -d '${JSON_PAYLOAD}'

JavaScript

const response = await fetch(
  'https://api.corebank.com/v2/payments/wire/initiate',
  {
    method: 'POST',
    headers: {
      'Authorization': `Bearer ${token}`
    }
  }
);
const data = await response.json();