GET
/
vendors
/
{vendor_id}
curl --request GET \
  --url https://api.charp.ai/vendors/{vendor_id} \
  --header 'Authorization: Bearer <token>'
{
  "vendor_id": "<string>",
  "name": "<string>",
  "email": "jsmith@example.com",
  "plan": "Free",
  "credits": 123,
  "status": "active",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer token authentication using OAuth2 access token

Path Parameters

vendor_id
string
required

Unique identifier of the vendor

Response

200
application/json

Vendor details retrieved successfully

The response is of type object.