Seed Data

Test data and credentials available in the staging environment for developer testing.

Staging Environment

The staging environment is connected to a live OpenSearch cluster. Indices are created per-tenant on first use via the admin API. Use the credentials below to test all endpoints.

Test Credentials

FieldValue
API Base URLhttps://535ubezkse.execute-api.us-east-1.amazonaws.com/search/v1
Demo Tenant IDa0000001-0000-0000-0000-000000000001
Developer Logindev@eventzr.com / Password123!
Admin Loginadmin@eventzr.com / Password123!

OpenSearch Indices

Each tenant gets isolated indices with the pattern {base-index}_{tenant-id}. Indices are created via the admin API on first deployment.

Base IndexEntityKey Fields
eventzr-eventsEventstitle, description, category, tags, location, dates, price
eventzr-venuesVenuesname, description, type, address, capacity, amenities, geo
eventzr-artistsArtistsname, bio, genre, instruments, social_links
eventzr-destinationsDestinationsname, description, country, region, highlights, geo
eventzr-brandsBrandsname, description, industry, website, logo_url

Quick Start Commands

1. Get a JWT tokenbash
# Login to get access token
curl -X POST https://535ubezkse.execute-api.us-east-1.amazonaws.com/auth/v1/login \
  -H "Content-Type: application/json" \
  -d '{"email":"dev@eventzr.com","password":"Password123!"}'

# Export for subsequent requests
export TOKEN="<accessToken from response>"
export TENANT_ID="a0000001-0000-0000-0000-000000000001"
export API="https://535ubezkse.execute-api.us-east-1.amazonaws.com/search/v1"
2. Check service healthbash
curl $API/_internal/healthz
3. Run a keyword searchbash
curl -X POST "$API/search" \
  -H "Authorization: Bearer $TOKEN" \
  -H "x-tenant-id: $TENANT_ID" \
  -H "Content-Type: application/json" \
  -d '{"query":"concert","use_semantic":false}'
4. List saved searchesbash
curl "$API/saved-searches" \
  -H "Authorization: Bearer $TOKEN" \
  -H "x-tenant-id: $TENANT_ID"
5. Get trending searchesbash
curl "$API/trending" \
  -H "Authorization: Bearer $TOKEN" \
  -H "x-tenant-id: $TENANT_ID"

Subscription Tiers & Limits

TierSearches/minSaved SearchesAlertsAI Features
Base (Free)1050No
Student30102No
Startup60255Basic
Pro12010025Full
EnterpriseUnlimitedUnlimitedUnlimitedFull + ZAR