Return the stock details of an array specific products by SKU

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://dealersdocs.api.rg-racing.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"R&G Dealers MCP server": {
  "url": "https://dealersdocs.api.rg-racing.com/mcp"
}
Close
POST /product/bulkstock

Body

array[string] array[string]

Body

array[string] array[string]

Body

array[string] array[string]

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • sku string | null
    • count integer(int32) | null
    • error string | null
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
  • 429 application/json

    Too Many Requests

    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
POST /product/bulkstock
curl \
 --request POST 'https://dealers.api.rg-racing.com/product/bulkstock' \
 --header "x-api-key: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '["string"]'
curl \
 --request POST 'https://dealers.api.rg-racing.com/product/bulkstock' \
 --header "x-api-key: $API_KEY" \
 --header "Content-Type: text/json"
curl \
 --request POST 'https://dealers.api.rg-racing.com/product/bulkstock' \
 --header "x-api-key: $API_KEY" \
 --header "Content-Type: application/*+json"
Request examples
[
  "string"
]
Request examples
[
  "string"
]
Request examples
[
  "string"
]
Response examples (200)
[
  {
    "sku": "string",
    "count": 42,
    "error": "string"
  }
]
Response examples (401)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}
Response examples (429)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}