1. Reports
Auto Value API
  • Reports
    • Create a valuation report
      POST
  • Authentication
    • Register a new account
      POST
    • Authenticate an existing user
      POST
    • End the current session
      POST
  • Schemas
    • CreateReportDto
    • ReportDto
    • ReportSuccessResponseDto
    • ValidationErrorDetailsDto
    • ValidationErrorResponseDto
    • ErrorResponseDto
    • CreateUserDto
    • UserDto
    • UserSuccessResponseDto
    • SignInUserDto
    • MessageSuccessResponseDto
  1. Reports

Create a valuation report

POST
/report
Last modified:2026-05-31 02:28:40
Maintainer:Not configured
Creates a vehicle valuation report for the currently authenticated user. A valid signed session cookie is required before this endpoint can be used.

Request

Authorization
or
API Key
Add parameter in cookie
session
Example:
session: ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢201
application/json
The valuation report was created successfully.
Bodyapplication/json

🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'http://localhost:3000/report' \
--header 'Content-Type: application/json' \
--data '{
    "manufacturer": "Toyota",
    "model": "Corolla",
    "year": 2021,
    "mileage": 38500,
    "price": 19500,
    "lat": 29.9792,
    "lng": 31.1342
}'
Response Response Example
201 - Example 1
{
    "status": "success",
    "details": {
        "id": 84,
        "manufacturer": "Toyota",
        "model": "Corolla",
        "year": 2021,
        "mileage": 38500,
        "price": 19500,
        "lat": 29.9792,
        "lng": 31.1342,
        "userId": 17
    }
}
Modified at 2026-05-31 02:28:40
Next
Register a new account
Built with