Skip to main content
POST
/
admin
/
v0
/
members
/
check
Check membership
curl --request POST \
  --url https://api.tightknit.ai/admin/v0/members/check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "data": {
    "is_member": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tightknit.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string<email>
required
Required string length: 1 - 254

Response

Check completed successfully.

success
enum<boolean>
required
Available options:
true
data
object
required