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

Choose one catalog endpoint for this request.

9 shown
GETjwt1 credit/requestreferrals.referralsEventsResponseDocReferrals
GET /referrals/me/events

List current user's referral events

Returns recent referral attribution records where the authenticated user is either the referrer or referred account.

Signed-in account session required before running this endpoint.

Sign in
View docs

Authentication

Signed-in account session required before running this endpoint.

Sign in

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "ok",
  "data": {
    "items": [
      {
        "id": "abc123",
        "code": "A1B2C3D4E5F6",
        "role": "referrer",
        "status": "rewarded",
        "reward_credits": 10000
      }
    ]
  }
}

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>"