Where to find the spec
| Source | Format | Use it for |
|---|---|---|
https://api.digitalseaservice.com/openapi.json | JSON | Production-current spec from the live API. |
https://api.digitalseaservice.com/openapi.yaml | YAML | Same content, AI-ingestion-friendly. |
/api-reference/openapi.json | JSON | The build-time snapshot powering this site. |
What the spec includes
- All four V1 resource endpoints with full request/response schemas and examples.
- The OAuth flow endpoints (
/oauth/authorize,/oauth/token,/oauth/revoke,/oauth/userinfo). - A complete
oauth2security scheme — IDE tools and “Try it” widgets pick up scopes from this. - The
serversarray — production and sandbox URLs, switchable from the dropdown above each endpoint. - Pydantic-typed response models with worked examples for every field.
Suggested AI-agent flow
If you’re driving an AI coding agent through your integration:- Drop
llms.txtinto context for a map of these docs. - Drop
/openapi.yamlinto context for the full API contract. - For specific topics, add the page’s
.mdview —/authentication.md, etc.

