Skip to main content

Prerequisites

You need an API key for the platform you want to use. Contact contact@55-tech.com to get your key.
PlatformAuth HeaderBase URL
ABP (Automated Bet Placing)X-API-Keyhttps://v2.55-tech.com
MM (Market Making)X-API-Keyhttps://mmapi.55-tech.com
Scraping APIX-API-Keyhttps://scraping-api.55-tech.com

ABP — Automated Bet Placing

1. List your accounts

curl -H "X-API-Key: YOUR_API_KEY" \
  https://v2.55-tech.com/accounts

2. Get a betslip (live odds)

curl -H "X-API-Key: YOUR_API_KEY" \
  "https://v2.55-tech.com/betslip?fixtureId=ID&outcomeId=161&playerId=0"

3. Place an order

curl -X POST -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"orders": [{"fixtureId": "...", "outcomeId": 161, "playerId": 0, "stake": 10, "minPrice": 1.5}]}' \
  https://v2.55-tech.com/place-orders

4. Track results

curl -H "X-API-Key: YOUR_API_KEY" \
  https://v2.55-tech.com/orders

MM — Market Making

1. Verify your identity

curl -H "X-API-Key: YOUR_API_KEY" \
  https://mmapi.55-tech.com/api/v1/me

2. List your orders

curl -H "X-API-Key: YOUR_API_KEY" \
  https://mmapi.55-tech.com/api/v1/orders

3. Check positions

curl -H "X-API-Key: YOUR_API_KEY" \
  https://mmapi.55-tech.com/api/v1/positions

4. View profit & loss

curl -H "X-API-Key: YOUR_API_KEY" \
  https://mmapi.55-tech.com/api/v1/pnl

Scraping API

1. Check network status

curl https://scraping-api.55-tech.com/network/status

2. Fetch a page

curl -H "X-API-Key: YOUR_API_KEY" \
  -H "X-Target-URL: https://example.com" \
  https://scraping-api.55-tech.com/fetch

3. Fetch with geo targeting

curl -H "X-API-Key: YOUR_API_KEY" \
  -H "X-Target-URL: https://example.com" \
  -H "X-Geo: DE" \
  https://scraping-api.55-tech.com/fetch

4. Check usage

curl -H "X-API-Key: YOUR_API_KEY" \
  https://scraping-api.55-tech.com/usage

Real-time updates

All APIs support WebSocket connections for live updates. See the WebSocket documentation for each API:

ABP WebSocket

Real-time order, bet, and settlement updates.

MM WebSocket

Live order fills, bets, and score updates.

Scraping WebSocket

Real-time fetch results via WebSocket relay.