Get daily calculation data
List the daily values of your calculated user fields, one row per trader per day.
- Method
- GET
- Path
https://api.returning.ai / v1/ custom-field-values/ daily - Permission
- userFields
- Retries
- Don't retry the 404
When to use this
- You chart how a calculated field, such as daily trading volume, changed for each trader day by day.
- You copy daily values into your own reporting.
Authentication#
- Header
Authorization: Bearer <API_KEY>- Permission
- userFieldsShown in the dashboard as “User Fields”
As built, the endpoint takes a Community API key with userFields, shown in the dashboard as User Fields, and the key decides the community. On the public API today, every request gets 404 before the key is checked.
Behaviour#
This endpoint is not available on the public API: https://api.returning.ai/v1/custom-field-values/daily returns 404 with an empty body for every request. The parameters and the response on this page describe the endpoint as built, and haven't been confirmed on the public API.
Each row is one trader's value of one calculated user field for one day. Rows are read-only here.
Request#
Query parameters#
Rule24-character hex ID
RuleField key
Egtradingvolume
RuleWhole number
Eg3247779
RulevalueDate (default), createdAt, updatedAt or userId
EgvalueDate
Ruledesc (default) or asc
Egdesc
RuleWhole number, 1 or more; default 1
Eg1
RuleDefault 50; max 200
Eg50
Headers#
userFields.RuleBearer <API_KEY>
curl --request GET \
--url 'https://api.returning.ai/v1/custom-field-values/daily?field_name=tradingvolume&limit=50' \
--header 'Authorization: Bearer <API_KEY>'
Response#
When the path is available, a 200 returns the page in data.data and the totals in data.pagination. Today, expect 404.
Rulesuccess
null when none is stored.total, page, limit and totalPages.{
"status": "success",
"message": "Daily custom field values fetched successfully",
"data": {
"data": [
{
"_id": "66f000000000000000000730",
"communityId": "66f000000000000000000010",
"userId": 3247779,
"email": "trader@example.com",
"field_name": "tradingvolume",
"valueDate": "2026-09-26T00:00:00.000Z",
"value": 125000.5,
"createdAt": "2026-09-27T00:05:00.000Z",
"updatedAt": "2026-09-27T00:05:00.000Z"
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 50,
"totalPages": 1
}
}
}
Errors#
The only response from the public API today is 404 with an empty body.
Do not retry01
404 with an empty body, whatever the key or parameters. Don't retry. Read stored field values with Get a trader's field history instead.{
"status": "success",
"message": "Daily custom field values fetched successfully",
"data": {
"data": [
{
"_id": "66f000000000000000000730",
"communityId": "66f000000000000000000010",
"userId": 3247779,
"email": "trader@example.com",
"field_name": "tradingvolume",
"valueDate": "2026-09-26T00:00:00.000Z",
"value": 125000.5,
"createdAt": "2026-09-27T00:05:00.000Z",
"updatedAt": "2026-09-27T00:05:00.000Z"
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 50,
"totalPages": 1
}
}
}