Create an account and receive an API key

Body
application/json
  • email
    Type: string Format: email
    required
Responses
  • application/json
  • application/problem+json
  • application/problem+json
  • application/problem+json
Request Example for post/v1/signup
curl https://ffforms.com/v1/signup \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "email": ""
}'
{
  "user": {
    "id": "string",
    "email": "string",
    "verified": true
  },
  "apiKey": {
    "id": "string",
    "name": "string",
    "keyPrefix": "string",
    "createdAt": "string",
    "lastUsedAt": null,
    "revokedAt": null,
    "secret": "string"
  }
}