Skip to content

Commit 81858c2

Browse files
authored
Merge pull request #103 from recoupable/fix/pr-102-review-feedback
fix: address PR #102 review feedback
2 parents 819e1e7 + 200c2e8 commit 81858c2

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

api-reference/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@
455455
},
456456
"/api/artists": {
457457
"get": {
458-
"description": "Retrieve artists accessible to the authenticated account. The account is derived from the API key or Bearer token. When org_id is omitted, returns only the account's own artists. Pass org_id to view artists in a specific organization. Pass account_id to filter to a specific account the API key has access to.",
458+
"description": "Retrieve artists. Artists can have socials. Artists can create songs and content.",
459459
"parameters": [
460460
{
461461
"name": "account_id",

authentication.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Copy your API key immediately — it is only shown once. Keys are stored as a se
3535
Pass your key in the `x-api-key` header:
3636

3737
```bash
38-
curl -X GET "https://api.recoupable.com/api/tasks" \
38+
curl -X GET "https://recoup-api.vercel.app/api/tasks" \
3939
-H "x-api-key: YOUR_API_KEY"
4040
```
4141

@@ -57,7 +57,7 @@ Org membership is determined by the account's [organizations](/api-reference/org
5757
If you're building a frontend application that authenticates users via [Privy](https://privy.io), you can pass the user's Privy JWT as a Bearer token instead of an API key.
5858

5959
```bash
60-
curl -X GET "https://api.recoupable.com/api/tasks" \
60+
curl -X GET "https://recoup-api.vercel.app/api/tasks" \
6161
-H "Authorization: Bearer YOUR_PRIVY_JWT"
6262
```
6363

docs.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,6 @@
139139
{
140140
"tab": "Content",
141141
"groups": [
142-
{
143-
"group": "Posts & Comments",
144-
"pages": [
145-
"api-reference/posts/get",
146-
"api-reference/post/comments",
147-
"api-reference/comments/get"
148-
]
149-
},
150142
{
151143
"group": "Content Creation",
152144
"pages": [
@@ -163,6 +155,14 @@
163155
"api-reference/content/estimate"
164156
]
165157
},
158+
{
159+
"group": "Posts & Comments",
160+
"pages": [
161+
"api-reference/posts/get",
162+
"api-reference/post/comments",
163+
"api-reference/comments/get"
164+
]
165+
},
166166
{
167167
"group": "Content Agent",
168168
"pages": [

index.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "Use the Recoup API to build your record label. Access research, co
55

66
# Welcome to the Recoup API
77

8-
Use the Recoup API to build your record label. Access artist analytics, fan segmentation, AI-powered chat, content creation, and task automation to power your music business.
8+
Use the Recoup API to build your record label. Generate content, Access artist analytics, Manage catalogs, Team chats, and task automation to power your record labels.
99

1010
## What is Recoup?
1111

@@ -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
@@ -89,7 +89,7 @@ The API is organized into five main sections. Use these links to jump to the rig
8989
icon="comments"
9090
href="/api-reference/chat/chats"
9191
>
92-
AI-powered conversations with artist context. Create, stream, and generate messages. Copy messages, delete trailing messages, and manage chat history.
92+
Conversations with artist context. Create, stream, and generate messages. Copy messages, delete trailing messages, and manage chat history.
9393
</Card>
9494
<Card
9595
title="Social Media"
@@ -122,7 +122,7 @@ The API is organized into five main sections. Use these links to jump to the rig
122122
icon="robot"
123123
href="/content-agent"
124124
>
125-
AI content creation agent accessible via Slack. Generates images, videos, and captions for artists automatically.
125+
Content creation agent accessible via Slack. Generates images, videos, and captions for artists automatically.
126126
</Card>
127127
<Card
128128
title="Authentication"
@@ -137,10 +137,10 @@ 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/artists/*`** — Artist management (list, create, segments, socials, socials-scrape, profile)
141+
- **`/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)
141142
- **`/api/content/*`** — Content creation (create, generate-image, generate-video, generate-caption, transcribe-audio, edit, upscale, analyze-video, templates, validate, estimate)
142143
- **`/api/chat/*`** — Chat (chats, artist, segment, messages, messages-copy, messages-trailing-delete, create, update, delete, generate, stream, compact)
143-
- **`/api/artists/*`** — Artist management (list, create, segments, socials, socials-scrape, profile)
144144
- **`/api/songs/*`** — Songs and catalogs (songs, create, analyze, analyze-presets, catalogs, catalogs-create, catalogs-delete, catalog-songs, catalog-songs-add, catalog-songs-delete)
145145
- **`/api/tasks/*`** — Task automation (get, create, update, delete, runs)
146146
- **`/api/spotify/*`** — Spotify (search, artist, artist-albums, artist-top-tracks, album)

0 commit comments

Comments
 (0)