Aggregated P&L performance series, equity curve and statistics.
GET
/api/performance
const url = 'https://api.tradr.cloud/api/performance?granularity=day&start=2026-04-15T12%3A00%3A00Z&end=2026-04-15T12%3A00%3A00Z&tz=UTC';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.tradr.cloud/api/performance?granularity=day&start=2026-04-15T12%3A00%3A00Z&end=2026-04-15T12%3A00%3A00Z&tz=UTC'Authed. Computes bucketed P&L series, equity curve and statistics per currency over the requested [start, end) window. Query validation (minimum start date, date order, bucket-count cap) always runs on the REQUESTED window on every tier.
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”granularity
required
string
start
required
string format: date-time
end
required
string format: date-time
tz
string
currency
string
Responses
Section titled “Responses”The performance response.
Validation error (invalid timezone, invalid dates, start before 2000-01-01, start not before end, end beyond today + 1 day, bucket count over cap, unsupported currency) — identical on every tier.
Not authenticated.
TIMEOUT or CLIENT_ABORT.