Skip to content
Get started

Fetch in-depth information about a single vendor

GET/v1/vendors/{urn}

Fetch in-depth information about a single vendor

Path ParametersExpand Collapse
urn: string
ReturnsExpand Collapse
created_at: string

An ISO-8601-formatted timestamp representing when the vendor was created (UTC)

formatdate-time
description: string

The vendor's description

name: string

The vendor's display name

urn: string

A unique identifier for the vendor

Fetch in-depth information about a single vendor

curl https://developer.clarative.ai/v1/vendors/$URN \
    -H "Authorization: Bearer $CLARATIVE_API_KEY"
{
  "created_at": "2019-12-27T18:11:19.117Z",
  "description": "description",
  "name": "name",
  "urn": "urn"
}
Returns Examples
{
  "created_at": "2019-12-27T18:11:19.117Z",
  "description": "description",
  "name": "name",
  "urn": "urn"
}