Benchmarks
Retrieves a list of available benchmarks which can be utilized for performance comparison purposes.
Endpoint
GET
/data/v1/benchmarksParameters
api_key string
required
Your authentication key needed to make requests.
format string
default: json
Defines return format of response. Options are json or csv. Default is json.
Example Request
cURL
curl -X GET "https://sensaai.com/data/v1/benchmarks?api_key=API_KEY"
Response
Returns a list of available performance benchmarks.
[
{
"id": "1",
"ticker": "^SP500TR",
"name": "S&P 500 TR",
"country": "US",
"description": "Total return of the S&P 500 index."
},
{
"id": "2",
"ticker": "^RUTTR",
"name": "Russell 2000 TR",
"country": "US",
"description": "Total return of the Rusell 2000 Index."
},
...more benchmarks
]
Table of Contents