Skip to main content
GET
/
waitlists
/
{waitlistId}
/
signups
/
{signupId}
Get Signup
curl --request GET \
  --url https://www.referralloop.dev/api/v1/waitlists/{waitlistId}/signups/{signupId} \
  --header 'Authorization: Bearer <token>'
{
  "signup": {
    "id": "789e0123-e89b-12d3-a456-426614174000",
    "email": "user@example.com",
    "name": "John Doe",
    "position": 1,
    "referral_code": "ABC123",
    "referral_url": "https://www.referralloop.dev/w/product-launch?ref=ABC123",
    "referral_count": 5,
    "status": "waiting",
    "created_at": "2024-01-15T10:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

Use your API key as the bearer token. API keys can be generated in your dashboard.

Example: Authorization: Bearer pk_live_YOUR_API_KEY

Path Parameters

waitlistId
string<uuid>
required

The ID of the waitlist

signupId
string<uuid>
required

The ID of the signup

Response

Successful response

signup
object
required