# Per-session quota utilization

**`GET https://myagentmail.com/linkedin/sessions/utilization`**

Group: LinkedIn — Sessions
Operation ID: `linkedinSessionUtilization`

Returns each active LinkedIn session for the tenant with its
action counts in the trailing 24 hours and the remaining daily
budget per action type. Drives the "Today's utilization" panel
in the dashboard and lets you decide when connecting another
LinkedIn account would add headroom.

Sessions used: search_signal (recurring polls), search_history
(one-shot lookups), profile_lookup (Pass-2 verification),
connection_request, send_message, post_like.


## Responses

### 200

```json
{
  "ok": false,
  "budget": {},
  "sessions": [
    {
      "sessionId": "string",
      "label": "string",
      "status": "string",
      "rateLimitedUntil": "2026-05-01T08:11:44.677Z",
      "rateLimitReason": "string",
      "counts": {},
      "remaining": {}
    }
  ]
}
```

## Code samples

### TypeScript

```typescript
import { MyAgentMail } from "myagentmail";

const client = new MyAgentMail({ apiKey: process.env.MYAGENTMAIL_API_KEY! });

// GET /linkedin/sessions/utilization
const result = await client.request("get", "/linkedin/sessions/utilization");
```

### curl

```bash
curl -X GET 'https://myagentmail.com/linkedin/sessions/utilization' \
  -H 'X-API-Key: $MYAGENTMAIL_API_KEY'
```

### Python

```python
import os, requests

r = requests.get(
    "https://myagentmail.com/linkedin/sessions/utilization",
    headers={"X-API-Key": os.environ["MYAGENTMAIL_API_KEY"]},
)
r.raise_for_status()
print(r.json())
```
