Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
List current user's referral events API Playground
Returns recent referral attribution records where the authenticated user is either the referrer or referred account.
GETjwt1 credit/requestreferrals.referralsEventsResponseDocReferrals
Endpoint details
Returns recent referral attribution records where the authenticated user is either the referrer or referred account.
- Method
- GET
- Path
- /referrals/me/events
- Authentication
- jwt
- Credit cost
- 1 credit/request
- Platform
- Referrals
- Parameters
- 2 documented fields
Request parameters
Authorization:headerlimit:query
Response schema fields
itemsitems[].campaignitems[].codeitems[].created_atitems[].expires_atitems[].iditems[].qualified_atitems[].reward_creditsitems[].rewarded_atitems[].roleitems[].status
Sample response summary
{
"code": 200,
"msg": "ok",
"data": {
"items": [
{
"id": "abc123",
"code": "A1B2C3D4E5F6",
"role": "referrer",
"status": "rewarded",
"reward_credits": 10000
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/referrals/me/events" \
-H "Authorization: Token <token>"