Getting Started

Connect external systems to Dart using the REST API. All requests require a bearer token.

Base URL:

https://api.owners.solaroil.io/api
All responses are JSON. Include Accept: application/json in requests.

Authentication

Include your token in the Authorization header:

Authorization: Bearer YOUR_TOKEN_HERE

Example cURL:

curl -X GET "https://api.owners.solaroil.io/api/tsp-info" \
  -H "Authorization: Bearer YOUR_TOKEN_HERE" \
  -H "Accept: application/json"

Test endpoint: https://api.owners.solaroil.io/api/tsp-info — returns your authenticated API user info in JSON.

Never expose your API token in client-side code or public repositories.