KOL Tweet SDK
Retrieve Most Recent Key Opinion Leader (KOL) Posts on X/Twitter!
Installation
Install the SDK using npm or yarn:
npm install @cryptocadet/kol-tweets-sdk
or
yarn add @cryptocadet/kol-tweets-sdk
Usage
Initialization
Import and initialize the SDK with your API and Secret keys, which you can get for free by signing up at CryptoCadet.
import CadetSDK from 'cryptocadet/kol-tweets-sdk';
const sdk = new CadetSDK('your-public-api-key', 'your-secret-key');
await sdk.authenticate();
Methods
Authenticate
const response = await sdk.authenticate('your-public-api-key', 'your-secret-key');
console.log(response);
Get KOL Tweets
const tweets = await sdk.getKOLTweets();
console.log(tweets);
Contributing
We welcome contributions! Please fork the repository and submit a pull request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Support
If you encounter any issues, feel free to open an issue on GitHub or contact us at hello@cryptocadet.app.
Happy Coding! 🎉