# Hackerrank — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Retrieve challenge scores, difficulty ratings, success ratios, and track-level ranking data from HackerRank's public practice platform. Browse challenges by track, view submission statistics, and access ranking metrics across all available tracks.

**Category:** Developer Tools | **Website:** [hackerrank.com/](https://hackerrank.com/) | **Docs:** [parse.bot/marketplace/837e486f-94e3-40fa-a4dc-8e58761f3b1f/hackerrank-com-api](https://parse.bot/marketplace/837e486f-94e3-40fa-a4dc-8e58761f3b1f/hackerrank-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-hackerrank-com-api-837e486f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_challenges

Get challenges with their score data including max_score, difficulty rating, success_ratio, total submissions, and solved count. Can be filtered by track or return all challenges. Results are paginated with offset/limit. Each challenge includes track metadata, skill level, preview text, and tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of challenges to return per page (max observed: 100). |
| `offset` | integer | No | Pagination offset (number of items to skip). |
| `track` | string | No | Track slug to filter challenges. When omitted, returns all challenges across all tracks. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hackerrank-com-api-837e486f/get_challenges \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","track":"<string>"}'
```

### get_track_scores

Get scores and rankings across all HackerRank tracks (algorithms, data structures, SQL, etc.). Returns practice scores, ranks, levels, and contest scores for each track, along with total participant counts reflected via rank values. The score_type parameter selects between practice and contest leaderboards.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `type` | string | No | Score type to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hackerrank-com-api-837e486f/get_track_scores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"<string>"}'
```
