Skip to content

Authentication

Basic Authentication

Basic authentication allows users to authenticate using their email and password.

Type Scheme
HTTP Basic

To authenticate using Basic Auth, include the Authorization header in your request:

Authorization: Basic <base64-encoded-email:password>
curl -u [email protected]:password -X GET "https://itsochvts.com/api/protected-resource"
Important Considerations
  • Ensure that credentials are base64-encoded before sending.
  • Basic authentication should be used over HTTPS to protect credentials.
  • For enhanced security, consider using token-based authentication methods such as OAuth or JWT.

All API endpoints use the following base URL:

https://itsochvts.com/api