Skip to content

Commit 829693b

Browse files
sweetmantechclaude
andcommitted
fix PR #102 review feedback
- Fix section count: "five" → "six" to match actual card count - Add missing research endpoints (track, instagram-posts) to LLM reference - Revert base URL to api.recoupable.com for consistency with authentication.mdx and openapi.json Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 819e1e7 commit 829693b

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This is where record labels, musicians, and managers start to build on Recoup AI
1818
All API requests should be made to:
1919

2020
```bash
21-
https://recoup-api.vercel.app/api
21+
https://api.recoupable.com/api
2222
```
2323

2424
## Authentication
@@ -30,7 +30,7 @@ All API endpoints are authenticated using an API key passed in the `x-api-key` h
3030
3. Create a new API key and copy it immediately (it's only shown once)
3131

3232
```bash
33-
curl -X GET "https://recoup-api.vercel.app/api/artists?accountId=YOUR_ACCOUNT_ID" \
33+
curl -X GET "https://api.recoupable.com/api/artists?accountId=YOUR_ACCOUNT_ID" \
3434
-H "Content-Type: application/json" \
3535
-H "x-api-key: YOUR_API_KEY"
3636
```
@@ -67,7 +67,7 @@ Keep your API key secure. Do not share it publicly or commit it to version contr
6767

6868
## API Sections
6969

70-
The API is organized into five main sections. Use these links to jump to the right area.
70+
The API is organized into six main sections. Use these links to jump to the right area.
7171

7272
<CardGroup cols={2}>
7373
<Card
@@ -137,7 +137,7 @@ The API is organized into five main sections. Use these links to jump to the rig
137137

138138
If you are an LLM navigating these docs, here is a summary of the endpoint structure:
139139

140-
- **`/api/research/*`** — Artist research (search, lookup, profile, metrics, audience, cities, similar, urls, playlists, albums, tracks, career, insights, genres, festivals, web, deep, people, extract, enrich, milestones, venues, rank, charts, radio, discover, curator, playlist)
140+
- **`/api/research/*`** — Artist research (search, lookup, profile, metrics, audience, cities, similar, urls, instagram-posts, playlists, albums, track, tracks, career, insights, genres, festivals, web, deep, people, extract, enrich, milestones, venues, rank, charts, radio, discover, curator, playlist)
141141
- **`/api/content/*`** — Content creation (create, generate-image, generate-video, generate-caption, transcribe-audio, edit, upscale, analyze-video, templates, validate, estimate)
142142
- **`/api/chat/*`** — Chat (chats, artist, segment, messages, messages-copy, messages-trailing-delete, create, update, delete, generate, stream, compact)
143143
- **`/api/artists/*`** — Artist management (list, create, segments, socials, socials-scrape, profile)
@@ -152,7 +152,7 @@ If you are an LLM navigating these docs, here is a summary of the endpoint struc
152152
- **`/api/sandboxes/*`** — Sandboxes (list, create, snapshot, delete, setup, file, upload)
153153
- **`/api/content-agent/*`** — Content agent webhooks (webhook, callback)
154154

155-
Base URL: `https://recoup-api.vercel.app/api`
155+
Base URL: `https://api.recoupable.com/api`
156156

157157
[OpenAPI Specification](https://github.com/sweetmantech/docs/blob/main/api-reference/openapi.json)
158158

quickstart.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: "Get your API key and make your first request to the Recoup API."
88
All API requests should be made to:
99

1010
```bash
11-
https://recoup-api.vercel.app/api
11+
https://api.recoupable.com/api
1212
```
1313

1414
## API Keys
@@ -37,7 +37,7 @@ Once you have your API key, include it in the `x-api-key` header for all authent
3737
<CodeGroup>
3838

3939
```bash cURL
40-
curl -X GET "https://recoup-api.vercel.app/api/tasks" \
40+
curl -X GET "https://api.recoupable.com/api/tasks" \
4141
-H "Content-Type: application/json" \
4242
-H "x-api-key: YOUR_API_KEY"
4343
```
@@ -51,14 +51,14 @@ headers = {
5151
}
5252

5353
response = requests.get(
54-
"https://recoup-api.vercel.app/api/tasks",
54+
"https://api.recoupable.com/api/tasks",
5555
headers=headers
5656
)
5757
print(response.json())
5858
```
5959

6060
```javascript JavaScript
61-
const response = await fetch("https://recoup-api.vercel.app/api/tasks", {
61+
const response = await fetch("https://api.recoupable.com/api/tasks", {
6262
headers: {
6363
"Content-Type": "application/json",
6464
"x-api-key": "YOUR_API_KEY",
@@ -84,7 +84,7 @@ interface TasksResponse {
8484
tasks: Task[];
8585
}
8686

87-
const response = await fetch("https://recoup-api.vercel.app/api/tasks", {
87+
const response = await fetch("https://api.recoupable.com/api/tasks", {
8888
headers: {
8989
"Content-Type": "application/json",
9090
"x-api-key": "YOUR_API_KEY",

0 commit comments

Comments
 (0)