GET
/
technicals
/
rating
/
{symbol}
/
{timeframe}
Get single timeframe technical rating
curl --request GET \
  --url https://api.financialcontext.com/technicals/rating/{symbol}/{timeframe} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": "<any>",
  "message": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "meta": {
    "pagination": {
      "currentPage": 1,
      "pageSize": 20,
      "totalItems": 150,
      "totalPages": 8,
      "hasMore": true,
      "hasPrevious": false
    }
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

symbol
string
required
Minimum length: 1
timeframe
enum<string>
required
Available options:
1m,
5m,
15m,
30m,
1h,
2h,
4h,
1d,
1W,
1M

Response

Single timeframe technical rating retrieved successfully

success
boolean
required

Indicates successful API response

data
any
required

Response data payload

timestamp
string<date-time>
required

ISO 8601 timestamp of the response

message
string

Optional success message

meta
object

Optional metadata including pagination, statistics, and additional context