Getting Started

Base URL

All API requests are served from the following base URL:

Ensure your client points to this versioned base path when making requests.

Development: http://localhost:3000/api/v1

Production: https://testdog.in/api/v1

Making Your First Request

You can use tools like curl, Postman, or any HTTP client (e.g. Axios, Fetch) to interact with the API.

If you're using frontend frameworks (React, Vue, etc.), make sure the browser sends cookies on every request

axios.get('/me', { withCredentials: true });
Updated on