View as Markdown
Vincario icon

Vincario ACTION

Get Vehicle Market Value

Get the market value of a vehicle. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Vincario account once, then configure and run Get Vehicle Market Value from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "vincario-get-vehicle-market-value",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    vincario: { authProvisionId: "apn_xxxxxxx" },
    vin: "VIN",
    odometer: 10,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Vehicle Market Value inputs
Property Type Description
vin VIN string
The Vehicle Identification Number
Required
odometer Odometer integer
The odometer reading of the vehicle
Optional
odometerUnit Odometer Unit string
The unit of the odometer reading. Defaults to 'km' if not provided
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
vincario-get-vehicle-market-value
Version
0.0.1
App
Vincario
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes