GET
/
revenue
/
{id}
Get Revenue
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/revenue/{id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Revenue retrieved successfully",
  "revenue": {
    "id": "revenue-uuid-123",
    "title": "Streaming Revenue - January 2024",
    "amount": 2500.5,
    "currency": "USD",
    "source": "streaming",
    "transactionDate": "2024-01-15T10:30:00Z",
    "memo": "Monthly streaming revenue distribution",
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-15T10:30:00Z"
  }
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

id
string
required

Revenue ID

Query Parameters

include
string

Additional data to include (Artist, Asset, Product, Splits)

Response

200
application/json

Success

The response is of type object.