Starbucks · Schema

Starbucks Loyalty Account

A Starbucks Rewards loyalty account with star balance, membership tier, and transaction history.

CoffeeFood ServiceLoyaltyOrderingRetailFortune 500

Properties

Name Type Description
id string Unique identifier for the loyalty account
memberName string Account holder display name
tier string Starbucks Rewards membership tier
starBalance integer Current available star balance for redemption
ytdStars integer Total stars earned year-to-date
memberSince string Date the member joined Starbucks Rewards
status string Current account status
View JSON Schema on GitHub

JSON Schema

starbucks-loyalty-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12",
  "$id": "https://api.starbucks.com/schemas/loyalty-account",
  "title": "Starbucks Loyalty Account",
  "description": "A Starbucks Rewards loyalty account with star balance, membership tier, and transaction history.",
  "type": "object",
  "required": ["id", "tier", "starBalance", "status"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the loyalty account"
    },
    "memberName": {
      "type": "string",
      "description": "Account holder display name"
    },
    "tier": {
      "type": "string",
      "description": "Starbucks Rewards membership tier",
      "enum": ["Welcome", "Green", "Gold"]
    },
    "starBalance": {
      "type": "integer",
      "minimum": 0,
      "description": "Current available star balance for redemption"
    },
    "ytdStars": {
      "type": "integer",
      "minimum": 0,
      "description": "Total stars earned year-to-date"
    },
    "memberSince": {
      "type": "string",
      "format": "date",
      "description": "Date the member joined Starbucks Rewards"
    },
    "status": {
      "type": "string",
      "enum": ["active", "inactive", "suspended"],
      "description": "Current account status"
    }
  },
  "examples": [
    {
      "id": "loyalty_abc123",
      "memberName": "Jane Smith",
      "tier": "Gold",
      "starBalance": 450,
      "ytdStars": 1240,
      "memberSince": "2020-03-15",
      "status": "active"
    }
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/starbucks-loyalty-account"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.