Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key in this request with your username and password.

Login to API and get your bearer token

POST https://api-sandbox.condorexpres.com/api/v1/public/login

Return a JSON Web Token

Request Body

Name
Type
Description

password*

string

Your password

email

string

Your email

{
	"success": true,
	"data": {
		"token": "eyJhbGciOiJIUzI1NiIsInR5cpXVCJ9.eyJzdWIiOjIyI6ImFuZHJlc0BncmF2aXR5LmNyIiwicm9sZSI6MywiYXVkIjoiY29uZG9yLWIiLCJpYXQiOjE2NTE3NzM5MDAsImV4cCI6MTY4NDE3MzkwMH0.VxGY3mBTURWpVTQLeCrUd4fv4j88sgBbYFDjQiID-Mk",
		"user": {
			"email": "[email protected]",
			"name": "Andres Castillo",
			"expiresAt": 1684173900
		}
	},
	"message": "Has ingresado correctamente",
	"code": "201"
}

Last updated