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

> Retrieve detailed information about your NeoDrop AI channels, including their configuration, schedule, and ownership details. Access complete activity logs to track published content and system events across your channels.

**Category:** Developer Tools | **Website:** [neodrop.ai/](https://neodrop.ai/) | **Docs:** [parse.bot/marketplace/32666659-87b1-40b0-93e3-b3ff20ade087/neodrop-ai-api](https://parse.bot/marketplace/32666659-87b1-40b0-93e3-b3ff20ade087/neodrop-ai-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-neodrop-ai-api-32666659/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_channel

Retrieve detailed information about a NeoDrop channel by its ID. Returns channel configuration, schedule, owner, subscriber/post counts, and content requirements. The channel must be public or the response will indicate it requires subscription.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id` | string | Yes | The channel's unique identifier (alphanumeric string, e.g. '3v9iZ3CPDki'). Obtainable from channel URLs or the discover page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-neodrop-ai-api-32666659/get_channel \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"<string>"}'
```

### get_channel_logs

Retrieve activity logs for a NeoDrop channel, showing publication history, heartbeat checks, and errors. Each log entry includes status, trigger type, summary, and references to published content (grains). Results are cursor-paginated in reverse chronological order.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `channel_id` | string | Yes | The channel's unique identifier (alphanumeric string, e.g. '3v9iZ3CPDki'). |
| `cursor` | string | No | Pagination cursor from a previous response's next_cursor field. Omit for the first page. |
| `limit` | integer | No | Maximum number of log entries to return per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-neodrop-ai-api-32666659/get_channel_logs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"channel_id":"<string>","cursor":"<string>","limit":"<integer>"}'
```
