Test CoreBank Payment Gateway APIs with live mock responses
Create a new wire transfer with real-time processing
Click "Execute API Call" to see live response
Responses are generated in real-time
curl -X POST \
"https://api.corebank.com/v2/payments/wire/initiate" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '${JSON_PAYLOAD}'
const response = await fetch(
'https://api.corebank.com/v2/payments/wire/initiate',
{
method: 'POST',
headers: {
'Authorization': `Bearer ${token}`
}
}
);
const data = await response.json();