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

> Get the current cookie.fun AI agent/token leaderboard ranked by Twitter mindshare or sentiment, including rank, mindshare/sentiment metrics, and basic market data.

**Category:** Web3 & Onchain | **Website:** [cookie.fun/](https://cookie.fun/) | **Docs:** [parse.bot/marketplace/4b378807-445b-49fe-83cc-a392341a6601/cookie-fun-api](https://parse.bot/marketplace/4b378807-445b-49fe-83cc-a392341a6601/cookie-fun-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-cookie-fun-api-4b378807/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_leaderboard

Get AI agent/token leaderboard ordered by a chosen metric. Returns top crypto AI agents with sentiment, mindshare, and market data. Results are ordered descending by the chosen column and time period. Pagination is not supported; use limit to control result count. Each agent carries nested mindshare, sentiment, and market_cap objects with value/delta breakdowns.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results to return. |
| `order_column` | string | No | Column to order results by. |
| `order_data_point` | string | No | Time reference for ordering. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cookie-fun-api-4b378807/get_leaderboard \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","order_column":"<string>","order_data_point":"<string>"}'
```
