Slyced API
Read-only REST API for your cap table data. Integrate Slyced into your internal tools, dashboards, or workflows with a single API key.
Quick Start
1. Create an API Key
Settings → API Keys → Create
2. Authenticate
Authorization: Bearer sk_live_...
3. Query your data
GET /api/v1/cap-table
Authentication
All requests require a valid API key passed in the Authorization header as a Bearer token. Keys are created in your company settings and can be revoked at any time.
60 requests/minute per API key (default, configurable)
Exceeding the limit returns 429 Too Many Requests with a Retry-After header.
API access requires the Growth plan ($79/month). Requests from Seed or Starter plans return 403 Forbidden.
Endpoints
/api/v1/companyCompany profile - name, legal entity, incorporation state, plan tier.
/api/v1/cap-tableFully-diluted ownership breakdown with per-stakeholder shares, options, vested/unvested counts, and ownership percentages.
/api/v1/stakeholdersList all active stakeholders - founders, employees, investors, advisors.
/api/v1/holdingsAll equity holdings with vesting schedules and exercise history. Includes share class, grant dates, and current status.
Error Codes
| Status | Meaning |
|---|---|
| 401 | Missing, invalid, or revoked API key |
| 403 | Plan does not include API access (upgrade to Growth) |
| 404 | Resource not found |
| 429 | Rate limit exceeded - check Retry-After header |
| 500 | Internal server error - contact support |