SocialHub.AIFlash
OverviewAPI ReferenceMCP GuidePortal EmbedQuick Start

Build with Flash

Integrate loyalty, coupons, stores, and member management into your apps using the Flash REST API or MCP protocol. Everything you need to get started is right here.

Get Started

Quick Example

cURL
curl -X GET https://your-domain.com/api/v2/stores \
  -H "X-API-Key: flash_sk_your_key_here" \
  -H "Content-Type: application/json"

# Response
{
  "stores": [
    {
      "id": "st_abc123",
      "name": "Downtown Flagship",
      "status": "active"
    }
  ],
  "total": 1
}
Node.js
const res = await fetch(
  "https://your-domain.com/api/v2/members",
  {
    headers: {
      "X-API-Key": process.env.FLASH_API_KEY,
      "Content-Type": "application/json",
    },
  }
);

const { members, total } = await res.json();
console.log(`Found ${total} members`);

Machine-readable spec available at /api/v2/openapi.json