{"id":44631616,"url":"https://github.com/bluet/everypixel-js","last_synced_at":"2026-02-14T16:35:09.419Z","repository":{"id":34995952,"uuid":"194893101","full_name":"bluet/everypixel-js","owner":"bluet","description":"JavaScript support for EveryPixel API","archived":false,"fork":false,"pushed_at":"2025-11-01T19:04:53.000Z","size":257,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-24T02:17:02.246Z","etag":null,"topics":["ai","api","artificial-intelligence","everypixel","everypixel-api","graphics","hacktoberfest","machine-learning","photo","picture","score"],"latest_commit_sha":null,"homepage":"","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/bluet.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-07-02T15:48:30.000Z","updated_at":"2025-11-01T19:04:57.000Z","dependencies_parsed_at":"2022-08-09T08:46:57.807Z","dependency_job_id":"6f2c3495-91e8-4caa-9220-cd7900820fbe","html_url":"https://github.com/bluet/everypixel-js","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bluet/everypixel-js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2Feverypixel-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2Feverypixel-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2Feverypixel-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2Feverypixel-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bluet","download_url":"https://codeload.github.com/bluet/everypixel-js/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluet%2Feverypixel-js/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29449374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ai","api","artificial-intelligence","everypixel","everypixel-api","graphics","hacktoberfest","machine-learning","photo","picture","score"],"created_at":"2026-02-14T16:35:07.202Z","updated_at":"2026-02-14T16:35:09.413Z","avatar_url":"https://github.com/bluet.png","language":"JavaScript","funding_links":["https://www.patreon.com/bluet"],"categories":[],"sub_categories":[],"readme":"# Welcome to EveryPixel API 👋\n![Version](https://img.shields.io/badge/version-0.1.0-blue.svg?cacheSeconds=2592000)\n[![Documentation](https://img.shields.io/badge/documentation-yes-brightgreen.svg)](https://github.com/BlueT/everypixel-js#readme)\n[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/BlueT/everypixel-js/graphs/commit-activity)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/BlueT/everypixel-js/blob/master/LICENSE)\n[![Twitter: BlueT](https://img.shields.io/twitter/follow/BlueT.svg?style=social)](https://twitter.com/BlueT)\n\nJavaScript client support for EveryPixel API, works in both Node.js and Browser.\n- Image Keywording\n- Stock Photography Scoring\n- UGC Photography Scoring\n- Age recognition\n- \u003chttps://labs.everypixel.com/api\u003e\n\n### 🏠 [Homepage](https://github.com/BlueT/everypixel-js#readme)\n\n## Install\n\n```sh\nnpm i everypixel\n```\n\n## Usage\n\n```js\nconst EveryPixel = require('everypixel');\n\nconst api = new EveryPixel({\n\t\"username\": \"\u003cyour-client-id\u003e\",\n\t\"password\": \"\u003cyour-client-secret\u003e\"\n});\n\n// Get 10 suggested keywords of online image\nlet ret = await api.keywords({\"url\": \"http://image.everypixel.com/2014.12/67439828186edc79b9be81a4dedea8b03c09a12825b_b.jpg\", \"num_keywords\": 10});\nconsole.log(ret.data);\n// Get 10 suggested keywords of local image file\nlet ret = await api.keywords({\"data\": fs.createReadStream(\"t/cat.jpg\"), \"num_keywords\": 10});\nconsole.log(ret.data);\n\n```\n\n### keywords\n```js\nawait api.keywords({\"url\": \"http://image.everypixel.com/2014.12/67439828186edc79b9be81a4dedea8b03c09a12825b_b.jpg\", \"num_keywords\": 10});\n```\n\n```js\nawait api.keywords({\"data\": fs.createReadStream(appRoot + \"/t/cat.jpg\"), \"num_keywords\": 10});\n```\n\n### quality\n```js\nawait api.quality({\"url\": \"http://image.everypixel.com/2014.12/67439828186edc79b9be81a4dedea8b03c09a12825b_b.jpg\"});\n```\n\n```js\nawait api.quality({\"data\": fs.createReadStream(appRoot + \"/t/cat.jpg\")});\n```\n\n### quality_ugc\n```js\nawait api.quality_ugc({\"url\": \"http://image.everypixel.com/2014.12/67439828186edc79b9be81a4dedea8b03c09a12825b_b.jpg\"});\n```\n\n```js\nawait api.quality_ugc({\"data\": fs.createReadStream(appRoot + \"/t/cat.jpg\")});\n```\n\n### faces\n```js\nawait api.faces({\"url\": \"https://labs.everypixel.com/api/static/i/estest_sample3.jpg\"});\n```\n\n```js\nawait api.faces({\"data\": fs.createReadStream(appRoot + \"/t/face.jpg\")});\n```\n\n## Run tests\nBecause EveryPixel doesn't provide free test account, you need to signup at https://labs.everypixel.com/api and get your client tokens with 100 daily free quota of api calls.\n\nPlease modify `t/test.js` and update your token info BEFORE running test.\n\n```sh\nnpm run test\n```\n\n## Author\n\n👤 **BlueT - Matthew Lien - 練喆明 \u0026lt;BlueT@BlueT.org\u0026gt;**\n\n* Twitter: [@BlueT](https://twitter.com/BlueT)\n* Github: [@BlueT](https://github.com/BlueT)\n\n## 🤝 Contributing\n\nContributions, issues and feature requests are welcome!\n\nFeel free to check [issues page](https://github.com/BlueT/everypixel-js/issues).\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n[![support us](https://img.shields.io/badge/become-a%20patreon%20us-orange.svg?cacheSeconds=2592000)](https://www.patreon.com/bluet)\n\n\n## 📝 License\n\nCopyright © 2019 [BlueT - Matthew Lien - 練喆明 \u0026lt;BlueT@BlueT.org\u0026gt;](https://github.com/BlueT).\n\nThis project is [MIT](https://github.com/BlueT/everypixel-js/blob/master/LICENSE) licensed.\n\n***\n_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluet%2Feverypixel-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbluet%2Feverypixel-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluet%2Feverypixel-js/lists"}