# Roboflow — 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.

> Search and explore over 200,000 open-source computer vision datasets on Roboflow Universe. Access detailed metadata — including image counts, class labels, and version info — to find the right dataset for any vision model training project.

**Category:** Developer Tools | **Website:** [roboflow.com/](https://roboflow.com/) | **Docs:** [parse.bot/marketplace/a904314b-19d7-40c2-8f64-10694ca66316/roboflow-com-api](https://parse.bot/marketplace/a904314b-19d7-40c2-8f64-10694ca66316/roboflow-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-roboflow-com-api-a904314b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_dataset_details

Fetch full metadata for a single dataset by workspace and project slug. Returns the complete markdown description, per-class annotation counts, version info, and download URL. Workspace and project slugs are available from search_datasets results (workspace_url and project_slug fields).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `project` | string | Yes | Project slug (from search_datasets results, under project_slug field). |
| `workspace` | string | Yes | Workspace slug (from search_datasets results, under workspace_url field). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-roboflow-com-api-a904314b/get_dataset_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project":"<string>","workspace":"<string>"}'
```

### list_car_datasets

List car-related datasets with automatic multi-page fetching. Internally searches for 'car' and concatenates pages. Each page contains up to 50 datasets. Returns all fetched summaries and the total count.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page_limit` | integer | No | Number of pages to fetch (up to 50 datasets per page). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-roboflow-com-api-a904314b/list_car_datasets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page_limit":"<integer>"}'
```

### search_datasets

Full-text keyword search across all Roboflow Universe datasets. Returns up to 50 dataset summaries per page. Results include workspace and project slugs needed to fetch full details via get_dataset_details. Paginates via integer page counter; has_more indicates whether additional pages exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | No | Search keyword. Supports single words and multi-word phrases. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-roboflow-com-api-a904314b/search_datasets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
