OpenAPI Specification
Import the Sillage API spec into Postman, Insomnia, or generate an SDK.
Import into Postman or Insomnia
Paste the following URL in Postman/Insomnia to import the full spec:
https://api.getsillage.com/api/v1/docs/specGenerate an SDK
Use openapi-generator-cli to generate a client SDK in your language of choice:
npx @openapitools/openapi-generator-cli generate \
-i https://api.getsillage.com/api/v1/docs/spec \
-g <language> \
-o ./sdkReplace <language> with typescript-fetch, python, java, etc.