# Earningshub — 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 upcoming earnings calendar entries and recently reported earnings results (including EPS and revenue actuals/estimates) for publicly traded companies.

**Category:** Finance & Markets | **Website:** [earningshub.com/](https://earningshub.com/) | **Docs:** [parse.bot/marketplace/6a80f073-e2e0-48d6-bf95-f4fce6b0f096/earningshub-com-api](https://parse.bot/marketplace/6a80f073-e2e0-48d6-bf95-f4fce6b0f096/earningshub-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-earningshub-com-api-6a80f073/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_reported_earnings

Extract recently reported earnings data from the past 30 days where actual results (eps_actual or revenue_actual) are available. Returns ticker, company_name, report_date, report_time, quarter, eps_estimate, eps_actual, revenue_estimate, and revenue_actual for each entry, sorted by report_date descending then ticker descending.

**Estimated cost:** Metered

_No parameters required._

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

### get_upcoming_earnings

Extract upcoming earnings data for entries with a report_date between today and 30 days from today. Returns ticker, company_name, report_date, report_time, quarter, eps_estimate, and revenue_estimate for each entry, sorted by report_date then ticker. No input parameters required — the date window is always relative to today.

**Estimated cost:** Metered

_No parameters required._

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