{"id":19734251,"url":"https://github.com/fega/wordreference-api","last_synced_at":"2025-06-11T06:06:50.346Z","repository":{"id":57399129,"uuid":"84287375","full_name":"fega/wordreference-api","owner":"fega","description":"An api to use the worldreference.com information","archived":false,"fork":false,"pushed_at":"2023-11-22T22:26:50.000Z","size":12,"stargazers_count":56,"open_issues_count":6,"forks_count":19,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-02T04:15:26.559Z","etag":null,"topics":["javascript","json","nodejs","nodejs-modules","wordreference"],"latest_commit_sha":null,"homepage":null,"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/fega.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}},"created_at":"2017-03-08T06:38:09.000Z","updated_at":"2024-12-10T12:40:59.000Z","dependencies_parsed_at":"2024-11-12T00:36:18.788Z","dependency_job_id":"293d6390-59e5-4604-a7ca-500472fd8647","html_url":"https://github.com/fega/wordreference-api","commit_stats":{"total_commits":11,"total_committers":1,"mean_commits":11.0,"dds":0.0,"last_synced_commit":"06eae3956ea128f078fa5c7e881849a80d22f0ed"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fega%2Fwordreference-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fega%2Fwordreference-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fega%2Fwordreference-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fega%2Fwordreference-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fega","download_url":"https://codeload.github.com/fega/wordreference-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fega%2Fwordreference-api/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259211835,"owners_count":22822378,"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","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":["javascript","json","nodejs","nodejs-modules","wordreference"],"created_at":"2024-11-12T00:36:11.419Z","updated_at":"2025-06-11T06:06:50.327Z","avatar_url":"https://github.com/fega.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wordreference-api [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coveralls-image]][coveralls-url][![Standard - JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](http://standardjs.com/)\n\n\u003e An api to use the worldreference.com information\n\n## Installation\n\n```sh\n$ npm install --save wordreference-api\n```\n\n## Usage\n\n```js\nvar wr = require('wordreference-api');\n/**\n * wr\n * Gets the result for the given word, available languages: 'es', 'en', 'it', 'fr'\n * @param  {String} word Word to be searched\n * @param  {String} from from language, default 'en'\n * @param  {String} to   to language, default 'es'\n * @return {Object}      Object with the word data\n */\nwr('Rainbow');\nwr('Rainbow','en','fr').then((result)=\u003e console.log);\n```\nReturn:\n``` javascript\n{\n  \"word\": \"Rainbow\",\n  \"pronWR\": \"/ˈreɪnˌbəʊ/\",\n  \"audio\": [\n    \"/audio/en/us/us/en069238.mp3\",\n    \"/audio/en/uk/general/en069238.mp3\",\n    \"/audio/en/uk/Yorkshire/en069238-55.mp3\",\n    \"/audio/en/Irish/en069238.mp3\",\n    \"/audio/en/scot/en069238.mp3\",\n    \"/audio/en/us/south/en069238.mp3\",\n    \"/audio/en/Jamaica/en069238.mp3\"\n  ],\n  \"translations\": [\n    {\n      \"title\": \"Principal Translations\",\n      \"translations\": [\n        {\n          \"from\": \"rainbow\",\n          \"fromType\": \"n\",\n          \"toType\": \"grupo nom\",\n          \"to\": \"arco iris \"\n        }\n      ]\n    },\n    {\n      \"title\": \"Compound Forms:\",\n      \"translations\": [\n        {\n          \"from\": \"rainbow trout\",\n          \"fromType\": \"n\",\n          \"toType\": \"nf\",\n          \"to\": \"trucha arcoiris \"\n        }\n      ]\n    }\n  ]\n}\n```\n## License\n\nMIT © [Fabian Gutierrez](fabiangutierrez.co)\n\n\n[npm-image]: https://badge.fury.io/js/wordreference-api.svg\n[npm-url]: https://npmjs.org/package/wordreference-api\n[travis-image]: https://travis-ci.org/fega/wordreference-api.svg?branch=master\n[travis-url]: https://travis-ci.org/fega/wordreference-api\n[daviddm-image]: https://david-dm.org/fega/wordreference-api.svg?theme=shields.io\n[daviddm-url]: https://david-dm.org/fega/wordreference-api\n[coveralls-image]: https://coveralls.io/repos/fega/wordreference-api/badge.svg\n[coveralls-url]: https://coveralls.io/r/fega/wordreference-api\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffega%2Fwordreference-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffega%2Fwordreference-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffega%2Fwordreference-api/lists"}