Introduction

You'll need to authenticate your requests to access any of the endpoints in the URVA API. In this guide, we'll look at how authentication works.

Base Endpoint

Use this base url for every request.

curl https://api.urvafreight.com

Authentication

With JWT authentication, you use your email and password to create a JWT that can then be used for accessing the endpoints.

Request for generating token

curl https://api.urvafreight.com/api/v1/login \
    -H "Content-Type: application/json" \
    -d '{"email": "your-email@example.com", "password": "your-password"}'

Was this page helpful?