Authentication
The Vulneri API uses bearer token to authenticate requests. You need send the two values (key and token) to receive the JWT.
Validate Key and Token
POST {{baseURL}}/auth
Request Body
Name
Type
Description
key*
String
Account Key
token*
String
API Token
{
"token":"jwt_token_value"
}Last updated