Skip to main content
POST
/
v1
/
rpc
/
getDaaScoreTimestampEstimate
Get DAA score timestamp estimate
curl --request POST \
  --url https://api.kas.fyi/v1/rpc/getDaaScoreTimestampEstimate \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "daaScores": [
    "1234567",
    "1234568",
    "1234569"
  ]
}'
{
  "timestamps": [
    "1638360000000",
    "1638360060000",
    "1638360120000"
  ]
}

Cost

This endpoint costs 0.1 RU (Request Units) per call.

Authorizations

x-api-key
string
header
required

API key required for authentication. Get your API key at https://developer.kas.fyi

Body

application/json
daaScores
string[]
required

Array of DAA scores to estimate timestamps for

Example:
["1234567", "1234568", "1234569"]

Response

200 - application/json

DAA score timestamp estimates retrieved successfully

timestamps
string[]
required

Array of estimated timestamps corresponding to the DAA scores

Example:
[
"1638360000000",
"1638360060000",
"1638360120000"
]
⌘I