@swing.xyz/platform-api
v1.3.1
Published
- [Developer Docs](https://developers.swing.xyz/) - https://developers.swing.xyz/
Downloads
225
Readme
Swing Platform API
- Developer Docs - https://developers.swing.xyz/
Getting Started
yarn add @swing.xyz/platform-apiUsage
import { getSwingPlatformAPI } from "@swing.xyz/platform-api";
const swingPlatformAPI = getSwingPlatformAPI({
/**
* Optionally configure the Platform API environment.
* environment: "production",
*
* Optionally override the Platform API URL
* baseUrl: "https://platform.swing.xyz",
*
* Optional add default headers
* headers: {},
*/
});
const projectConfig = swingPlatformAPI.GET("/projects/{projectId}/config", {
params: {
path: {
projectId: "swing-project-identifier",
},
},
});