Authentication URL - Venddor API

Authentication URL

POST https://www.venddor.com.br/api/auth

Request authentication key and link for Venddor API access.

Important: Only the POST method is supported for this endpoint.

Authentication Parameters

Parameter Type Required Description
email* string Yes Registered user email
password* string Yes User password
Request Example
Response Example
{
  "email": "user@example.com",
  "password": "your_secure_password"
}
{
  "status": "success",
  "data": {
    "api_key": "abcdef123456789abcdef123456789",
    "expires_at": "2025-05-16T12:00:00Z",
    "user_id": 12345
  }
}

Response Status Codes

Status Code Description
200 OK Authentication successful
400 Bad Request Missing required parameters
401 Unauthorized Invalid credentials
429 Too Many Requests Rate limit exceeded
Tip: Store your API key securely and include it in the Authorization header for all subsequent requests.