The data store status endpoint provides real-time information about the event data store, configuration, and runtime metrics.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/KingPsychopath/oooc-fete-finder/llms.txt
Use this file to discover all available pages before exploring further.
Get data store status
Authentication
This endpoint accepts credentials via
x-admin-key header or Authorization: Bearer header interchangeably.Response
Returns current data store status, configuration, and runtime metrics.Whether the request succeeded
ISO 8601 timestamp of the status check
Local event store status information
Storage provider type (e.g., “postgres”, “vercel”)
Location identifier for the storage provider
Whether the store contains data
Number of keys in the store
Number of rows in the event data
Last update timestamp
Identity of the last updater
Origin of the data (e.g., “manual”, “import”, “sync”)
Runtime data source status
Currently active data source in runtime
Number of events currently loaded in runtime
Timestamp of last data fetch attempt
Error message from last remote fetch (if any)
Example response
Error responses
Error message describing what went wrong
Use cases
Monitoring data freshness
Use thestore.updatedAt and runtime.lastFetchTime fields to monitor when data was last updated and fetched.
Detecting configuration issues
Compareconfig.dataSource with runtime.dataSource to ensure the runtime is using the expected data source. Check runtime.lastRemoteErrorMessage for remote data fetch issues.
Performance monitoring
Use themetrics object to track cache hit rates and response times. A low cache hit rate may indicate inefficient caching or high data volatility.
This endpoint provides a lighter-weight alternative to the
/api/admin/health endpoint when you only need store and runtime status without detailed validation and count comparisons.