Get product pricing

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://mall-api-proxy.documentation.omnicado.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "omnicado-mall-proxy MCP server": {
    "url": "https://mall-api-proxy.documentation.omnicado.com/mcp"
  }
}

Close
GET /products/{productId}/pricing

Headers

  • X-Application-Name string

Path parameters

  • productId string Required

    Partner's product identifier

Query parameters

  • client_id string Required

    Client identifier

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • data object
      Hide data attributes Show data attributes object
      • fair_price number

        Fair Price

      • price number

        Price of product (used only if the product is without variants, otherwise it is in the variant data structure)

      • rrp number Deprecated

        Recommended retail price (if the product has variants, use this attribute only in the variant data structure)

      • force_price number

        Price may be overriden by ongoing campaign, if so then force_price field contains forced price, price cannot be updated when force_price is in effect

    • result object
      Hide result attributes Show result attributes object
      • code integer(int)
      • status string
GET /products/{productId}/pricing
curl \
 --request GET 'https://mpapi.proxy.omnicado.com/v1/products/F192621/pricing?client_id=yourClientId&client_id=api_token_value' \
 --header "X-Application-Name: myApplicationName"
Response examples (200)
{
  "data": {
    "fair_price": 3412.2,
    "price": 1933.0,
    "rrp": 2133.0,
    "force_price": 2051.0
  },
  "result": {
    "code": 200,
    "status": "OK"
  }
}