{"id":15049547,"url":"https://github.com/znixbtw/c99","last_synced_at":"2026-02-15T22:05:13.835Z","repository":{"id":57170949,"uuid":"468443172","full_name":"znixbtw/c99","owner":"znixbtw","description":":fire: C99.nl API Wrapper","archived":false,"fork":false,"pushed_at":"2022-03-26T07:47:09.000Z","size":59,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-19T04:23:46.553Z","etag":null,"topics":["api-wrapper","c99","c99-api","nodejs"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@znixbtw/c99","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/znixbtw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-10T17:22:13.000Z","updated_at":"2024-12-16T17:09:36.000Z","dependencies_parsed_at":"2022-08-27T13:20:12.328Z","dependency_job_id":null,"html_url":"https://github.com/znixbtw/c99","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/znixbtw/c99","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znixbtw%2Fc99","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znixbtw%2Fc99/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znixbtw%2Fc99/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znixbtw%2Fc99/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/znixbtw","download_url":"https://codeload.github.com/znixbtw/c99/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znixbtw%2Fc99/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002021,"owners_count":26083258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-wrapper","c99","c99-api","nodejs"],"created_at":"2024-09-24T21:21:14.941Z","updated_at":"2025-10-09T20:18:20.323Z","avatar_url":"https://github.com/znixbtw.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# C99 Unofficial API Wrapper\n\n### Installing\nUsing npm:\n\n```bash\n$ npm i @znixbtw/c99\n```\n\nUsing yarn:\n\n```bash\n$ yarn add @znixbtw/c99\n```\nUsing import/export\n```js\nimport C99 from '@znixbtw/c99';\n```\nUsing require()\n```js\nconst C99 = require('@znixbtw/c99');\n```\n\n### Usage\n```js\n// Initalizing\nconst client = new C99({\n\tkey: 'XXXX-XXXX-XXXX-XXXX'\n});\n\n// Using async/await\nasync function ping() {\n\ttry {\n\t\tconst response = await client.ping('1.1.1.1');\n\t\tconsole.log(response);\n\t} catch (error) {\n\t\tconsole.error(error);\n\t}\n}\n\n// Using promises\nclient\n\t.ping('1.1.1.1')\n\t.then((response) =\u003e console.log(response))\n\t.catch((error) =\u003e console.error(error));\n```\n\n### Available Functions (All descriptions are taken from [c99](https://api.c99.nl/))\n| Functions               | Description                                                                                                                                                                   |\n|-------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| subdomainFinder()       | Performs an advanced subdomain scan to find most subdomains of the given domain.                                                                                              |\n| phoneLookup()           | Get more information about any phone number.                                                                                                                                  |\n| skypeResolver()         | Attempts to grab an IP address of a Skype account, results are not guaranteed. (This is completely legal as it uses publicly available records)                               |\n| ip2skype()              | Shows all Skype accounts with that specific IP.(This is completely legal as it uses publicly available records)                                                               |\n| firewallDetector()      | Scans to detect if a website is behind a firewall and determines what firewall it is.                                                                                         |\n| portScanner()           | Scans all ports of given host.                                                                                                                                                |\n| ping()                  | Pings a host 4 times and shows the result.                                                                                                                                    |\n| getHostname()           | Gets host of given IP address.                                                                                                                                                |\n| dnsChecker()            | Performs an advanced check on the specific URL. Second parameter is optional. If left empty, all servers will be used. Possible check types: a, aaaa, cname, mx, ns, soa, txt |\n| dnsResolver()           | Gets server IP of given host.                                                                                                                                                 |\n| domainChecker()         | Checks whether a domain is available or not, no matter what extension.                                                                                                        |\n| domainHistory()         | Checks available IP history of a domain with dates.                                                                                                                           |\n| ip2domains()            | Attempts to find websites hosted on the specific IP address.                                                                                                                  |\n| alexaRank()             | Grab the latest Alexa Rank information of any website, including backlinks and top country.                                                                                   |\n| whois()                 | Whois check on a domain to see who the domain owner is.                                                                                                                       |\n| createScreenshot()      | Creates a screenshot of any website/url you want.                                                                                                                             |\n| geoIp()                 | Locates the given host/ip address.                                                                                                                                            |\n| upOrDown()              | Checks if a host is up or down.                                                                                                                                               |\n| reputationChecker()     | Checks whether a specific site/url is suspicious and might contain malware, phishing or other potential harmful software.                                                     |\n| getHeaders()            | Gets the headers of a website.                                                                                                                                                |\n| linkBackup()            | Makes an online backup of a link.                                                                                                                                             |\n| urlShortener()          | Shorts every long URL.                                                                                                                                                        |\n| randomStringPicker()    | Gets random string from given text file.                                                                                                                                      |\n| dictionary()            | Gets the definition of any word.                                                                                                                                              |\n| definePicture()         | Reverses the image/picture given and determines what's on it.                                                                                                                 |\n| synonym()               | Gets the alternative words/synonyms for any legitimate english word you fill in.                                                                                              |\n| emailValidator()        | Checks if given up e-mail exists.                                                                                                                                             |\n| disposableMailChecker() | Checks if given up e-mail is disposable/temporarily or not.                                                                                                                   |\n| ipValidator()           | Checks if IP address format is valid.                                                                                                                                         |\n| torChecker()            | Checks whether an IP is from a TOR network or not.                                                                                                                            |\n| translate()             | Translates your text (auto-detected) to any language.                                                                                                                         |\n| randomPerson()          | Generates random name address etc. (genders: male/female/all).                                                                                                                |\n| youtubeDetails()        | Gets all details of a specific YouTube video.                                                                                                                                 |\n| youtubeMP3()            | Converts any song up to 10 minutes to MP3.                                                                                                                                    |\n| bitcoinBalance()        | Checks the current balance of any Bitcoin address.                                                                                                                            |\n| ethereumBalance()       | Checks the current balance of any Ethereum address.                                                                                                                           |\n| currency()              | Converts normal and cryptocurrencies to any other currency.                                                                                                                   |\n| currencyRates()         | Shows the rate of every currency in the world based on the unit price of the given source.                                                                                    |\n| weather()               | Checks the weather of every city or postal code you give up.                                                                                                                  |\n| qrGenerator()           | Generates a QR code and uploads it to imgur, useful to quickly share a piece of text or URL.                                                                                  |\n| textParser()            | Extracts text from any image. It works best on English text.                                                                                                                  |\n| proxyList()             | Fetches you a fresh proxy list, up to 1000 proxies.                                                                                                                           |\n| proxyDetector()         | Detects whether an IP address is a proxy/vpn or not. High accuracy!                                                                                                           |\n| passwordGenerator()     | Generates a random password based on the given configuration.                                                                                                                 |\n| randomNumber()          | Generates a random number based on the given length or between parameter.                                                                                                     |\n| licenseKeyGenerator()   | Generates a randomized license using given template.                                                                                                                          |\n| eitherOr()              | Provides a random \"would you rather\" question/dilemma, giving two hard options.                                                                                               |\n| gif()                   | Gives you a list of animated GIFs based on the given keyword.                                                                                                                 |\n\n\n### Docs\n* [Official](https://api.c99.nl/)\n\n### License\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fznixbtw%2Fc99","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fznixbtw%2Fc99","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fznixbtw%2Fc99/lists"}