Skip to main content
POST
/
v1
/
auth
/
login
Login
curl --request POST \
  --url https://api.example.com/v1/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>"
}
'
{
  "id": "<string>",
  "email": "<string>",
  "display_name": "<string>",
  "auth_provider": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.edge.glitchexecutor.com/llms.txt

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

Body

application/json
email
string<email>
required
password
string
required

Response

Successful Response

id
string
required
email
string
required
display_name
string | null
required
auth_provider
string
required