Documentation Index
Fetch the complete documentation index at: https://docs.superlink.me/llms.txt
Use this file to discover all available pages before exploring further.
SDK Installation
The SDK is available in Javascript, Go and Python. Use their respective package managers to install the SDK.
npm install @superlink-me/superlink --save
SDK Setup
Setting up the SDK simply requires adding your API key to make authorized requests.
let superlink = require('@superlink-me/superlink');
let superlinkClient = superlink.ApiClient.instance;
let BearerAuth = superlinkClient.authentications['BearerAuth'];
BearerAuth.apiKey = "YOUR_API_KEY";
BearerAuth.apiKeyPrefix = 'Bearer';
// Use superlinkClient to make API calls