This repository contains versioned OpenAPI specifications for Kaleidoswap APIs.
specs/
├── kaleidoswap.json # Latest Kaleidoswap API spec
├── versions/ # Historical versions
│ ├── kaleidoswap-v0.1.0.json
│ ├── kaleidoswap-v0.2.0.json
│ └── ...
└── README.md # This file
Latest version:
https://raw.githubusercontent.com/kaleidoswap/specs/main/kaleidoswap.json
Specific version:
https://raw.githubusercontent.com/kaleidoswap/specs/main/versions/kaleidoswap-v{version}.json
This repository is automatically updated on new releases.
The update process:
- Generates the OpenAPI specification
- Validates the spec
- Commits to this repository
- Creates a versioned copy in
versions/
To use the spec locally:
# Download latest spec
curl -o kaleidoswap.json \
https://raw.githubusercontent.com/kaleidoswap/specs/main/kaleidoswap.json
# Download specific version
curl -o kaleidoswap.json \
https://raw.githubusercontent.com/kaleidoswap/specs/main/versions/kaleidoswap-v0.2.0.jsonMIT