GET /api/v1/poap/status
Check if the authenticated user has already claimed a POAP link.
Authentication: Required
Sample Request
curl -H "Authorization: Bearer YOUR_TOKEN" \
"https://api.grails.app/api/v1/poap/status"Response
// 200 OK — has claimed
{
"success": true,
"data": {
"has_claimed": true,
"claimed_at": "2026-04-08T00:00:00.000Z",
"link": "https://poap.xyz/claim/abc123"
},
"meta": {
"timestamp": "2026-04-08T00:00:00.000Z",
"version": "1.0.0"
}
}// 200 OK — has not claimed
{
"success": true,
"data": {
"has_claimed": false
},
"meta": {
"timestamp": "2026-04-08T00:00:00.000Z",
"version": "1.0.0"
}
}Last updated on