Skip to main content

Overview

The C2C Descriptor service analyzes item photos, description, and metadata to generate:
  • Estimated selling prices (min/max/average)
  • Marketplace title and description
  • Condition assessment
  • Packaging size recommendation
  • Inconsistency warnings if detected

API Endpoint

POST /loopos_ai_c2c_descriptor

Request

{
  "language": "PT-PT",
  "images": ["https://example.com/image.jpg"],
  "agent_specific": {
    "category_name": "Electronics",
    "product_name": "iPhone 12 Pro",
    "brand_name": "Apple",
    "user_description": "iPhone em excelente estado"
  }
}

Response

{
  "value_out_max": 500.0,
  "value_out_min": 350.0,
  "value_out_average": 425.0,
  "marketplace_posting_title": "iPhone 12 Pro - Excelente Estado",
  "marketplace_posting_description": "iPhone 12 Pro em excelente estado...",
  "condition": "B",
  "dimensions_box": "S",
  "warning": false,
  "warning_message": ""
}