Useful utilities for developers, ready to use and open-source.
POST https://testio.dev/api/auth
Este endpoint genera tokens de autenticaci贸n din谩micos para su uso en APIs.
{
"username": "string",
"password": "string"
}
{
"status": "success",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"expires_in": 3600
}
{
"status": "error",
"message": "Credenciales inv谩lidas"
}
curl -X POST https://testio.dev/api/auth \
-H "Content-Type: application/json" \
-d '{"username": "test_user", "password": "test_password"}'
{
"username": "test_user",
"password": "test_password"
}