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

> Monitor Docker's system health and service status in real-time, view incident history, and subscribe to status updates via RSS feed. Track outages, service incidents, and overall platform availability to stay informed about Docker's infrastructure performance.

**Category:** Developer Tools | **Website:** [dockerstatus.com/](https://dockerstatus.com/) | **Docs:** [parse.bot/marketplace/9de48d2e-9a20-4a5f-9c3e-8d06f176b337/dockerstatus-com-api](https://parse.bot/marketplace/9de48d2e-9a20-4a5f-9c3e-8d06f176b337/dockerstatus-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-dockerstatus-com-api-9de48d2e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_services_status

Returns the current operational status of all Docker services, including nested container/location details for each service. Each service includes its name, status, status_code, last-updated timestamp, and an array of containers.

**Estimated cost:** Metered

_No parameters required._

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

### get_incident_history

Returns a list of past incidents and maintenance events with their status update timeline. Supports optional filtering by component or container/location ID. Each incident includes title, date, status, affected components/locations, and chronological status updates.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `component_id` | string | No | Filter incidents by component ID (e.g. '5342d1b837768a325c00000b'). |
| `container_id` | string | No | Filter incidents by container/location ID (e.g. '64513de85fc76c053615177e'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dockerstatus-com-api-9de48d2e/get_incident_history \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"component_id":"<string>","container_id":"<string>"}'
```

### get_overall_status

Returns the overall system status banner (e.g., 'Operational') and the last-updated timestamp from Docker's status page. A single lightweight call that summarizes the entire platform health.

**Estimated cost:** Metered

_No parameters required._

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

### get_rss_feed

Fetches the official Docker status RSS feed containing recent incidents and maintenance events with HTML-formatted descriptions. Returns items in reverse-chronological order.

**Estimated cost:** Metered

_No parameters required._

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

### get_service_status

Returns the current status of a single Docker service by name or ID. At least one of service_name or service_id must be provided. Returns the service's status, status_code, last-updated timestamp, and nested container details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `service_id` | string | No | The unique ID of the service. At least one of service_id or service_name must be provided. |
| `service_name` | string | No | The name of the service, case-insensitive (e.g. 'Docker Hub Registry'). At least one of service_name or service_id must be provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dockerstatus-com-api-9de48d2e/get_service_status \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"service_id":"<string>","service_name":"<string>"}'
```
