getbackpacktflistings
v0.6.4
Published
Useful for getting classified listings without using the backpack.tf's API which is rate-limited.
Downloads
11
Readme
Get BackpackTF Listings
Usage Example
import getBackpackTFListings from 'getbackpacktflistings'; // ESM
const getBackpackTFListings = require('getbackpacktflistings'); // CommonJS
const gl = new getBackpackTFListings();
async function t() {
const response = await gl.getListings(
'https://backpack.tf/classifieds?item=Bill%27s%20Hat&quality=6&tradable=1&craftable=1&australium=-1&killstreak_tier=0'
);
console.log(JSON.stringify(response, null, '\t'));
}
//Proxy Examples
const prox1 = {
host: '127.0.0.1',
port: 8080,
auth: {
username: 'user',
password: 'pass'
}
};
const prox2 = 'http://user:[email protected]:8080';
Namespace
interface Proxy {
host: string;
port: number;
auth: {
username: string;
password: string;
};
}
interface Listing {
id: string; // Listing's unique id.
sku: string; // tf2-sku-2 in string.
created: string; // epoch time of the when the listing was created in ms.
bumped: string; // epoch time of the when the listing was bumped in ms. // will be same as created if it was never bumped.
count: number; // amount of the items lister is selling.
automatic: boolean; // true if the lister is automatic.
isOnline: boolean; // true if the lister is online.
details: string; // Comment below the listing.
tradeUrl: string; // If listing has tradeURL, this is an URL to send a trade offer otherwise null.
addFriend: string; // If listing does not have tradeURL, this is an URL to add the person otherwise null.
steamid64: string; // Lister's steamID.
price: {
keys: number;
metal: number;
};
spells: string[]; // Spells of the listed item.
parts: string[]; // Strange Parts of the listed item.
sheen: string; // Sheen of the item if it's kt-2 or kt-3
killstreaker: string; // Killstreaker of the item if it's kt-3
}
type Response = {
[intent in 'buy' | 'sell']: Listing[];
};
Constructor
getBackpackTFListings(proxies)
proxies
- Optional.Proxy[]
orstring[]
to rotate between proxies to avoid getting429: Too many requests.
Method
getListings(url[, pageAmount])
url
- Required.BackpackTF classified url
of the item you want to get the listings of.pageAmount
- Optional. How many pages you want to load should be a type ofnumber
.- Returns
Promise<Response>