API Authentication
How It Works?
The HypeProxy.io API requires an authentication token, but we were split between the demand of customers who didn't want to use a complex authentication mechanism like JWT and bringing a good level of security to our service, for this reason we decided to propose two mechanisms:
Traditional JWT Authentication
Here is a classic example of login with a JWT token, using the Authorization
HTTP header:
The call of the
Profile
endpoint is just an example, it works same on every endpoints.
Query Parameter Authentication
Some people can't make complex requests and/or don't have access to HTTP headers, so we accept the JWT Token as query parameter.
You just have to pass your JWT token as a ?apikey=
query string.
API Reference
Sign In to API
To authenticate you need to use the endpoint /v2/Authentication/SignIn
.
Login and Get JWT Token.
POST
https://api.hypeproxy/io/v2/Authentication/SignIn
Request Body
Name | Type | Description |
---|---|---|
email* | String | User email |
password* | String | User password |
otpCode | String | User OTP, if you enabled 2FA |
Last updated