## github/user/profile-velocity

`GET /v1/github/user/profile-velocity`

Weekly commit, PR, issue and review velocity for a user, computed from their recent public activity.

*GitHub user contribution velocity*

| Parameter | Required | Description |
| --- | --- | --- |
| `handle` | yes | GitHub username — e.g. `torvalds` |
| `depth` | no | Event pages to analyze, 1-3 (100 events per page, default 3) — e.g. `3` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 5 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/github/user/profile-velocity?handle=torvalds" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_warnings": [
    "example"
  ],
  "active_repos": [],
  "activity": {
    "active_days": 0,
    "longest_streak_days": 0
  },
  "handle": "example",
  "totals": {
    "comments": 0,
    "commits_pushed": 0,
    "events": 0,
    "issues_opened": 0,
    "prs_merged": 0,
    "prs_opened": 0,
    "reviews": 0
  },
  "weekly": [],
  "window": {
    "days": 0,
    "events_analyzed": 0,
    "pages_fetched": 0
  }
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/github/user/profile-velocity#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/github/user/profile-velocity.json)
