Skip to main content

Overview

The Value Estimation service uses web search to research current prices on Portuguese marketplaces (OLX, Custojusto, etc.) and calculates recycling values and repair costs.

API Endpoint

POST /loopos_ai_value_estimation

Request

{
  "language": "PT-PT",
  "agent_specific": {
    "loopos_item": {
      "item": {
        "data": {
          "name": "iPhone 12",
          "brand": "Apple",
          "condition": "B",
          "description": "iPhone 12 em bom estado, 128GB, cor azul",
          "category": "Smartphones"
        }
      }
    }
  }
}

Response

{
  "value_out_max": 500.0,
  "value_out_min": 350.0,
  "value_out_average": 425.0,
  "recycling_value_max": 50.0,
  "recycling_value_min": 30.0,
  "recycling_value_average": 40.0,
  "repair_cost_max": 100.0,
  "repair_cost_min": 50.0,
  "repair_cost_average": 75.0,
  "reasoning": "Based on web search results...",
  "description": "iPhone 12 em bom estado...",
  "references": ["https://example.com/market-research"]
}