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

Auto Value Prod
api.auto-value.yousefdawood.me
Auto Value Prod
api.auto-value.yousefdawood.me
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 'api.auto-value.yousefdawood.me/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 - Success
{
    "status": "fail",
    "statusCode": 401,
    "message": "You are not currently signed in"
}
Modified at 2026-05-31 02:28:40
Next
Register a new account
Built with