## Retrieve `vendors.retrieve(strurn) -> VendorRetrieveResponse` **get** `/v1/vendors/{urn}` Fetch in-depth information about a single vendor ### Parameters - `urn: str` ### Returns - `class VendorRetrieveResponse: …` - `created_at: datetime` An ISO-8601-formatted timestamp representing when the vendor was created (UTC) - `description: Optional[str]` The vendor's description - `name: str` The vendor's display name - `urn: str` A unique identifier for the vendor ### Example ```python import os from clarative import Clarative client = Clarative( api_key=os.environ.get("CLARATIVE_API_KEY"), # This is the default and can be omitted ) vendor = client.vendors.retrieve( "urn", ) print(vendor.created_at) ```