For the complete documentation index, see llms.txt. This page is also available as Markdown.
Reliability and status
Status page
status.scispace.com — per-endpoint-group status, uptime history, and incident updates. Subscribe
there for notifications; we do not email status changes by default.
Availability target
99.9% monthly availability for GA endpoints, measured on successful responses to well-formed requests,
excluding 4xx. The target is a published objective on Developer and Scale, and contractual on
Enterprise.
What is excluded from the calculation
429responses: throttling is the system working as designed (rate-limits)402responses: exhausted credits are not an outageScheduled maintenance announced 72 hours ahead on the status page
Building for degradation
Treat
503as retryable with backoff; treat sustained429as a signal to lower concurrency permanentlyFail soft on depth. If
deep_reviewis unavailable or slow, fall back tostandardrather than showing an errorPersist resource IDs before you wait. A
srch_ID survives your process crashing; an in-memory poll loop does notCache the last good answer where staleness is tolerable, within content-licensing limits
Set client timeouts above the p95 for the depth you use (depth): 15 s standard, 45 s high quality, 240 s deep review
Incident communication
Sev-1 (API unavailable) and Sev-2 (major degradation) are posted to the status page within 15 minutes and updated at least every 30 minutes until resolved. A public postmortem follows within 5 business days for Sev-1.
Related
Last updated