# Benzinga — 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 real-time stock quotes, company fundamentals, financial news, and analyst ratings all in one place to make informed investment decisions. Track market movements and research companies with up-to-date pricing, ratings, and news coverage.

**Category:** Finance & Markets | **Website:** [benzinga.com/](https://benzinga.com/) | **Docs:** [parse.bot/marketplace/7cceb2df-b440-4fcb-bb60-4cc540a5e000/benzinga-com-api](https://parse.bot/marketplace/7cceb2df-b440-4fcb-bb60-4cc540a5e000/benzinga-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-benzinga-com-api-7cceb2df/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_analyst_ratings

Get analyst ratings for a stock symbol including the firm name, rating action, price target changes, and upside/downside estimates. Data is extracted from Benzinga's analyst ratings page and ordered by date descending.

**Estimated cost:** Metered

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

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-benzinga-com-api-7cceb2df/get_analyst_ratings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"symbol":"<string>"}'
```

### get_fundamentals

Fetch fundamental company data for a symbol including company profile, asset classification, share class details, and financial ratios. Returns a single comprehensive object with nested company information from Benzinga's data API. The asOf date is set automatically to the current date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `period` | string | No | Time period for data. Accepted value: 3M |
| `symbol` | string | Yes | Stock ticker symbol (e.g. AAPL, TSLA) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-benzinga-com-api-7cceb2df/get_fundamentals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"period":"<string>","symbol":"<string>"}'
```

### get_news

Fetch recent news articles for a stock symbol from Benzinga's quote news page. Each article includes full body text (up to 5000 characters) and a derived sentiment label (bullish, bearish, or neutral) based on keyword frequency analysis. Articles are ordered by recency.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of articles to return |
| `symbol` | string | Yes | Stock ticker symbol (e.g. AAPL, TSLA) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-benzinga-com-api-7cceb2df/get_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","symbol":"<string>"}'
```

### get_quote

Retrieve real-time delayed quote data for a single stock symbol. Returns pricing (open, high, low, last trade), volume, market cap, P/E ratio, dividend yield, and 52-week range. The quote reflects the most recent trading session data with a short delay.

**Estimated cost:** Metered

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

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-benzinga-com-api-7cceb2df/get_quote \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"symbol":"<string>"}'
```
