Guide
Visit our Telegram bot with this button.
You'll be able to get your API Key, receive 50 free credits, or purchase more credits.
try:
response = requests.post(
'https://api.arbichat.com/outcome',
json={
"event": "Real Madrid vs Barcelona",
"market": "Barcelona to win",
"sport": "Football",
"date": "30/07/2023"
"amount": 100,
"odds": 1.5
},
headers={
'Content-Type': 'application/json',
'X-API-Key': 'YOUR_API_KEY_HERE',
}
)
response.raise_for_status()
print(response.json())
except requests.exceptions.RequestException as error:
print('Error:', error)
Send a POST request to our API endpoint. You'll need to send the following fields:
Fields marked with (*) are mandatory. If you don't send the bet amount and odds, you won't receive the payout in the response.
{
"outcome": "Won",
"payout": 150,
"context": "Barcelona won the match 3-0",
"url": "https://es.betsapi.com/rt/6976685/Barcelona-vs-Real-Madrid"
}
Receive the outcome of the bet sent. The response fields include:
You won't receive the payout if you don't send the bet amount and odds.