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

> Access comprehensive financial insights by retrieving article URLs, stock summaries, politician trading activities, and guru investment picks from GuruFocus in one place. Search stocks and discover the latest expert recommendations and news coverage tied to your investments of interest.

**Category:** Finance & Markets | **Website:** [gurufocus.com/](https://gurufocus.com/) | **Docs:** [parse.bot/marketplace/a5ec8f4c-20e9-4a33-920a-d5d54cec95cf/gurufocus-com-api](https://parse.bot/marketplace/a5ec8f4c-20e9-4a33-920a-d5d54cec95cf/gurufocus-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-gurufocus-com-api-a5ec8f4c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_guru_latest_picks

Retrieve the latest stock picks from tracked investment gurus. Returns each guru's recent new buys, additions, reductions, and sold-out positions along with dates and firm names. No input parameters required — returns the current global list.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gurufocus-com-api-a5ec8f4c/get_guru_latest_picks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_stock_summary

Retrieve summary information for a single stock identified by ticker symbol. Searches for the exact ticker match and returns the stock's exchange, price, market cap, volume, and currency. Returns input_not_found if no exact match exists.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ticker` | string | Yes | Stock ticker symbol, case-insensitive (e.g. 'AAPL', 'MSFT', 'TSLA'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gurufocus-com-api-a5ec8f4c/get_stock_summary \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ticker":"<string>"}'
```

### search_stocks

Full-text search across stocks and guru/ETF entities by ticker symbol or company name. Returns all matching results across multiple global exchanges. Each result is flattened with a type field ('stock' or 'guru') alongside the entity's fields (symbol, company, price, exchange, mktcap, volume for stocks; GuruName, firm, fundticker for gurus).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Stock ticker or company name to search for (e.g. 'AAPL', 'Microsoft'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gurufocus-com-api-a5ec8f4c/search_stocks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
