Skip to main content
POST
/
auth
/
login
Authenticate and get API token
curl --request POST \
  --url https://www.postable.com/api/v1/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "app_id": "my-app",
  "email": "user@example.com",
  "password": "your-password"
}
'
{
  "data": {
    "token": "<string>"
  }
}

Body

application/json
app_id
string
required

Identifier for your application (used to manage tokens)

email
string<email>
required

Your Postable account email

password
string
required

Your Postable account password

Response

Authentication successful

data
object