Developers

API-first valuation infrastructure.

One endpoint. One schema. Fast appraisals from public image URLs.

MCP quick connect

Use your dashboard API key with https://tryvalue.ai/mcp.

Open MCP docs
{
  mcp: {
    servers: {
      "value-api": {
        url: "https://tryvalue.ai/mcp",
        headers: {
          "x-value-api-key": "your_api_key"
        }
      }
    }
  }
}

Connect via api.

Example input

POST /api/v1/appraise-product

curl -X POST "https://tryvalue.ai/api/v1/appraise-product" \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "image_url": "https://images.example.com/vintage-watch.jpg",
    "description": "Vintage Omega Seamaster in used condition with leather strap.",
    "country": "us"
  }'

Example output

{
  "similar_items": [
    {
      "title": "Omega Seamaster Vintage Watch",
      "url": "https://example.com/listing/123",
      "vendor": "Example Market",
      "image": "https://example.com/listing/123/image.jpg",
      "price": "1295.00"
    }
  ],
  "appraisal": {
    "price_lower": 1100,
    "price_upper": 1500,
    "price_currency": "USD",
    "best_match": {
      "title": "Omega Seamaster Vintage Watch",
      "url": "https://example.com/listing/123",
      "vendor": "Example Market",
      "image": "https://example.com/listing/123/image.jpg",
      "price": "1295.00"
    },
    "reasoning": [
      "Comparable sold listings cluster in a similar condition range.",
      "Brand, model family, and visible wear align to a mid-market valuation."
    ],
    "defects": []
  },
  "error": {
    "discovery_error": null,
    "image_upload_errors": [],
    "price_enrichment_errors": [],
    "appraisal_error": null
  }
}

Developer tools

Use the VALUE API/MCP.

Create a key to start valuing items today.