Using StackOverflowSDK with stackexchange.com

TypeScript integration

✓ Official SDK
Install
npm install StackOverflowSDK
Quick start
import StackOverflowSDK from 'StackOverflowSDK';

const client = new StackOverflowSDK({ accessToken: "YOUR_ACCESS_TOKEN" });
Returns the user associated with the passed access_token. This method retur…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.stackexchange.com/2.0/me
Returns a collection of statistics about the site. Data to facilitate per-s…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.stackexchange.com/2.0/info
Returns the tags found on a site. The inname parameter lets a consumer filt…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.stackexchange.com/2.0/tags
SDK on GitHub 📄 API Docs
SDK
StackOverflowSDK
TypeScript
API
stackexchange.com
stackexchange.com
At a glance
Language TypeScript
Endpoints124
Base URLhttps://api.stackexchange.com/2.0
✓ Official