Skip to main content
GET
https://api.trycase.ai/api/v1
/
account
curl -X GET "https://api.trycase.ai/api/v1/account" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "org_buyer123",
  "type": "buyer",
  "name": "The Wine Bar SF",
  "dba_name": null,
  "email": "[email protected]",
  "phone": "+14155551234",
  "license": {
    "number": "47-123456",
    "state": "CA",
    "type": "type_47",
    "verified": true,
    "verified_at": "2025-01-01T00:00:00Z"
  },
  "address": {
    "street1": "123 Market Street",
    "street2": null,
    "city": "San Francisco",
    "state": "CA",
    "zip": "94102"
  },
  "stats": {
    "total_orders": 42,
    "shipping_addresses": 3,
    "favorites": 15
  },
  "created_at": "2025-01-01T00:00:00Z"
}

Get Account

Retrieve information about your authenticated account.
curl -X GET "https://api.trycase.ai/api/v1/account" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "org_buyer123",
  "type": "buyer",
  "name": "The Wine Bar SF",
  "dba_name": null,
  "email": "[email protected]",
  "phone": "+14155551234",
  "license": {
    "number": "47-123456",
    "state": "CA",
    "type": "type_47",
    "verified": true,
    "verified_at": "2025-01-01T00:00:00Z"
  },
  "address": {
    "street1": "123 Market Street",
    "street2": null,
    "city": "San Francisco",
    "state": "CA",
    "zip": "94102"
  },
  "stats": {
    "total_orders": 42,
    "shipping_addresses": 3,
    "favorites": 15
  },
  "created_at": "2025-01-01T00:00:00Z"
}