Gifli API Docs
Api

Register

Create a new user account. Rate limit 20 per 10 minutes per IP.

POST
/auth/register

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/auth/register" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com",    "password": "stringst"  }'
{  "message": "Account created. Please log in."}
{  "error": "string"}
{  "error": "Too many requests",  "retryAfterSec": 0}