Skip to main content
GET
/
api
/
accounts
/
{id}
/
catalogs
cURL
curl --request GET \
  --url https://recoup-api.vercel.app/api/accounts/{id}/catalogs
{
  "status": "success",
  "catalogs": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developers.recoupable.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string<uuid>
required

The unique identifier of the account to query

Response

Catalogs retrieved successfully

Response containing catalogs data

status
enum<string>

Status of the request

Available options:
success,
error
catalogs
object[]

Array of catalog objects

error
string

Error message (only present if status is 'error')