Counterparty Scoring Playground
Test the API without writing code
Simulate real trust score requests with mock data. Switch to live mode to test with your actual API credentials.
Configuration
Set up your request
Mode
API Key
Live mode requires authentication. Sign in to unlock it.
Parameters
Request payload
Required: entity_id, amount, currency. Context fields provide additional metadata.
Ready. Choose a preset or fill the form, then run.
Examples
Preset scenarios
Results
API Response
No response yet
Configure your request and click "Send Request"
Raw Data
JSON Payloads
Request
application/json
{
"entity_id": "counterparty-clean-001",
"amount": 420,
"currency": "USDT",
"context": {
"rail": "p2p",
"fiat_currency": "NGN",
"asset": "USDT",
"side": "buy",
"channel": "playground"
}
}Code Samples
Implementation
Node.js
const response = await fetch("https://sandbox.provd.network/mock/v1/counterparties/score", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-Key": "<your_api_key>"
},
body: JSON.stringify({
"entity_id": "counterparty-clean-001",
"amount": 420,
"currency": "USDT",
"context": {
"rail": "p2p",
"fiat_currency": "NGN",
"asset": "USDT",
"side": "buy",
"channel": "playground"
}
})
});
const data = await response.json();
console.log(data);