Skip to main content
GET
/
financials
/
overview
/
{project_id}
Get Financials Overview
curl --request GET \
  --url https://api.terraspect.earth/financials/overview/{project_id} \
  --header 'Authorization: Bearer <token>'
{
"project_id": "proj_789012",
"revenue_share_percentage": 30.5,
"payment_frequency": 30
}

Authorizations

Authorization
string
header
required

Extended access token required for more sensitive data, in the format Authorization: Bearer <token>

Path Parameters

project_id
string<uuid>
required

Unique identifier of the project

Response

Financial overview successfully retrieved

project_id
string
required

Project identifier

Example:

"proj_789012"

revenue_share_percentage
number
required

Percentage of revenue shared with community

Required range: 0 <= x <= 100
Example:

30.5

payment_frequency
integer
required

Average payment frequency in days

Required range: x >= 1
Example:

30