gocreative
v0.1.0
Published
Official Node SDK for GoCreative AI — pay-per-call APIs for AI agents. Enrich, lookup, scrape, search across 145+ endpoints (Instagram, TikTok, X, LinkedIn, GitHub, Amazon, npm, PyPI, WHOIS, DNS, Wikipedia and more). Bring your own gck_ API key or use the
Downloads
15
Maintainers
Readme
gocreative
Official Node SDK for the GoCreative AI pay-per-call API for AI agents. ~145 endpoints across social enrichment (Instagram / TikTok / X / LinkedIn / GitHub), data lookups (WHOIS, DNS, IP, npm, PyPI, Wikipedia, crypto), and product scrapers (Amazon, eBay, Reddit, Product Hunt).
Install
npm install gocreative30-second quickstart
const { Client } = require("gocreative");
// With a paid API key (recommended):
const gc = new Client({ apiKey: "gck_your_key_here" });
// Or no key — free demo tier, 5 calls/day per IP:
const free = new Client();
(async () => {
console.log(await gc.enrich.company("anthropic.com"));
console.log(await gc.lookup.githubUser("torvalds"));
console.log(await gc.scrape.amazon("B08N5WRWNW"));
console.log(await gc.search.tiktokHashtag("ai"));
})();The client reads GOCREATIVE_API_KEY from process.env if you don't pass one.
Endpoint groups
| Group | Method examples |
|---|---|
| client.enrich.* | company, instagram, tiktok, x, linkedin, github |
| client.lookup.* | githubUser, whois, dns, npm, pypi, wikipedia, ip, crypto |
| client.scrape.* | amazon, ebay, reddit, producthunt |
| client.search.* | tiktokHashtag, instagramHashtag |
For anything not wrapped:
await gc.get("/v1/lookup/hn/top");Get an API key
Get a paid gck_... key at https://api.gocreativeai.com/pricing.
Powered by GoCreative AI — free tier 5 calls/day, paid plans at https://api.gocreativeai.com/pricing.
License
MIT
