API Documentation

Integrate with ClovaLink using our RESTful API

View complete API Documentation on GitHub Wiki

ClovaLink API Documentation

This documentation provides details on how to interact with the ClovaLink API.

Authentication

All API requests (except for public endpoints) require authentication using a JWT token.

Obtaining a Token

To obtain a token, send a POST request to /api/auth/signin with the following JSON request body:

{
  "email": "[email protected]",
  "password": "your-password"
}

The response will include a token:

{
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "user": {
    "id": "user-id",
    "email": "[email protected]",
    "name": "User Name"
  }
}

Include this token in the Authorization header for all subsequent requests:

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

This is a preview of the API Documentation. For the complete documentation, please visit our GitHub Wiki.

View Full API Documentation