Skip to main content
GET
/
motions
List motions
curl --request GET \
  --url https://api.recurr.dev/v1/motions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "motion_01HQX...",
    "performance_rate": 123,
    "cohort_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Your Recurr secret API key as a Bearer token: Authorization: Bearer rk_live_….

Keys are environment-scoped — rk_live_ operates on live data, rk_test_ on isolated test data (see Test mode). Create, scope, and rotate keys in your dashboard (Settings → API keys, developer role). Secret keys are server-side only — never ship them in an app binary or client JavaScript.

Response

200 - application/json

Motion list

id
string
required
Example:

"motion_01HQX..."

type
enum<string>
required
Available options:
migration,
annual_nudge,
cancel_save,
winback,
re_engagement,
referral
status
enum<string>
required
Available options:
draft,
active,
paused,
completed
performance_rate
number
required

Performance fee rate (e.g., 0.025 for migration, 0.10 for lifecycle motions).

cohort_id
string | null

Cohort this motion targets.

created_at
string<date-time>