> ## Documentation Index
> Fetch the complete documentation index at: https://docs.55-tech.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart - Connect to 55-Tech APIs

> Get started with the 55-Tech ABP, MM, and Scraping APIs. Check connectivity, authenticate, and make your first API calls.

## Prerequisites

You need an API key for the platform you want to use. Contact [contact@55-tech.com](mailto:contact@55-tech.com) to get your key.

| Platform                    | Auth Header | Base URL                           |
| --------------------------- | ----------- | ---------------------------------- |
| ABP (Automated Bet Placing) | `X-API-Key` | `https://v2.55-tech.com`           |
| MM (Market Making)          | `X-API-Key` | `https://mmapi.55-tech.com`        |
| Scraping API                | `X-API-Key` | `https://scraping-api.55-tech.com` |

***

## ABP — Automated Bet Placing

### 1. List your accounts

```bash theme={null}
curl -H "X-API-Key: YOUR_API_KEY" \
  https://v2.55-tech.com/accounts
```

### 2. Get a betslip (live odds)

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

### 3. Place an order

```bash theme={null}
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

```bash theme={null}
curl -H "X-API-Key: YOUR_API_KEY" \
  https://v2.55-tech.com/orders
```

***

## MM — Market Making

### 1. Verify your identity

```bash theme={null}
curl -H "X-API-Key: YOUR_API_KEY" \
  https://mmapi.55-tech.com/api/v1/me
```

### 2. List your orders

```bash theme={null}
curl -H "X-API-Key: YOUR_API_KEY" \
  https://mmapi.55-tech.com/api/v1/orders
```

### 3. Check positions

```bash theme={null}
curl -H "X-API-Key: YOUR_API_KEY" \
  https://mmapi.55-tech.com/api/v1/positions
```

### 4. View profit & loss

```bash theme={null}
curl -H "X-API-Key: YOUR_API_KEY" \
  https://mmapi.55-tech.com/api/v1/pnl
```

***

## Scraping API

### 1. Check network status

```bash theme={null}
curl https://scraping-api.55-tech.com/network/status
```

### 2. Fetch a page

```bash theme={null}
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

```bash theme={null}
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

```bash theme={null}
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:

<Columns cols={3}>
  <Card title="ABP WebSocket" icon="bolt" href="/abp-api/websocket">
    Real-time order, bet, and settlement updates.
  </Card>

  <Card title="MM WebSocket" icon="bolt" href="/mm-api/websocket">
    Live order fills, bets, and score updates.
  </Card>

  <Card title="Scraping WebSocket" icon="bolt" href="/scraping-api/websocket">
    Real-time fetch results via WebSocket relay.
  </Card>
</Columns>
