API
Get started
Create an API key
From your SignupGate account, click on your user avatar in top right corner. Choose Settings and navigate to to API Keys.
Then click Generate API Key.
Copy your key
Click on the area with the generated key to copy it to the clipboard.
You can always come back and copy your key again.
Make a test request
Finally, make a test request to the API using your new key.
curl --request GET \
--url https://api.signupgate.com/v1/status \
--header 'accept: application/json' \
--header 'Authorization: Bearer [YOUR_API_KEY]'
If everything is set up correctly, you should receive the following response:
{
"success": true,
"data": {
"status": "ok"
}
}