REST API
Calculate a technical indicator
Authorization
bearerAuth AuthorizationBearer <token>
API key passed as Bearer token in Authorization header
In: header
Path Parameters
category*string
Value in
"trend" | "momentum" | "volatility" | "volume" | "support-resistance"Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://loading/api/v1/indicators/trend" \ -H "Content-Type: application/json" \ -d '{ "indicator": "string", "data": {} }'{
"success": true,
"data": {
"category": "string",
"indicator": "string",
"result": null
},
"meta": {
"timestamp": 0,
"remaining": 0
}
}