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

> Check Render's current platform status, review past incidents and their resolutions, and stay updated with the latest product changelog releases. Monitor service health and historical downtime to plan your deployments and understand platform changes.

**Category:** Developer Tools | **Website:** [render.com/](https://render.com/) | **Docs:** [parse.bot/marketplace/0fbaead2-5c13-411e-aca4-84f324b8b3ba/render-com-api](https://parse.bot/marketplace/0fbaead2-5c13-411e-aca4-84f324b8b3ba/render-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-render-com-api-0fbaead2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_changelog

Returns Render's product changelog entries (recent feature releases, improvements, and fixes). Fetches the full RSS feed in a single call; typically contains the 10 most recent entries. Each entry includes title, URL, publication date, HTML description, and category tag.

**Estimated cost:** Metered

_No parameters required._

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

### get_incidents

Returns recent platform incidents with their status updates and affected components. Results are paginated by the upstream provider (up to 50 incidents per page). Each incident includes a timeline of updates with affected component transitions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-render-com-api-0fbaead2/get_incidents \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### get_status

Returns the current operational status of Render's platform, including the overall status indicator and the status of each infrastructure component (grouped by region). One API call, no pagination.

**Estimated cost:** Metered

_No parameters required._

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