RelayAPI

Get engagement decay curve for a post

GET
/v1/analytics/content-decay
AuthorizationBearer <token>

API key (rlay_live_* or rlay_test_). Invite redemption also accepts a server-derived rlay_session_ bearer for a current user session.

In: header

Query Parameters

post_id*string

Post ID to analyze decay for

days?integer

Number of days to analyze

Range1 <= value <= 90
Default30

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/analytics/content-decay?post_id=string"
{  "data": [    {      "cumulative_engagement": 0,      "cumulative_impressions": 0,      "day": 0,      "engagement": 0,      "impressions": 0    }  ],  "half_life_days": 0,  "platform": "twitter",  "post_id": "string"}

Found something wrong? Help us improve this page.