https://github.com/edgarvaguencia/node-ivoox
Unofficial iVoox API for node
https://github.com/edgarvaguencia/node-ivoox
api ivoox node npm yarn
Last synced: 10 months ago
JSON representation
Unofficial iVoox API for node
- Host: GitHub
- URL: https://github.com/edgarvaguencia/node-ivoox
- Owner: EdgarVaguencia
- License: mit
- Created: 2015-10-01T17:26:51.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-04-16T19:07:42.000Z (about 3 years ago)
- Last Synced: 2025-09-03T10:57:30.172Z (10 months ago)
- Topics: api, ivoox, node, npm, yarn
- Language: JavaScript
- Size: 438 KB
- Stars: 17
- Watchers: 2
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-ivoox
===========
Unofficial iVoox API for node
[](https://nodei.co/npm/node-ivoox/)
[](https://travis-ci.org/EdgarVaguencia/node-ivoox) [](https://codeclimate.com/github/EdgarVaguencia/node-ivoox) [](https://coveralls.io/github/EdgarVaguencia/node-ivoox?branch=master)
Install
-------
```bash
npm install node-ivoox
```
Use
----
```javascript
var ivoox = require('node-ivoox');
ivoox.audios().then(function(data) { console.log(data) }).catch(function(e) { console.error(e); });
```
Methods
-------
* audios([urlPodcasts])
* podcasts()
* search(string)
Example of a response
---------------------
```json
[
{
"author": "La Lupa con Rosa Pérez (Podcast oficial)",
"category": "Misterio y otras realidades",
"file": "http://ivoox.com/listen_mn_3423261_1.mp3",
"imgMain": "http://static-1.ivoox.com/audios/1408745050g.jpg",
"imgMini": "http://static-1.ivoox.com/usuarios/6251441429674mini.jpg",
"link": "http://www.ivoox.com/lupa-casas-malditas-encantadas-con-audios-mp3_rf_3423261_1.html",
"title": "La Lupa – “Casas malditas y encantadas” con Joaquín Abenza, J.M Marsella, Jesús..."
},
{
"author": "Contraperiodismo Matrix",
"category": "Misterio y otras realidades",
"file": "http://ivoox.com/listen_mn_9103980_1.mp3",
"imgMain": "http://static-1.ivoox.com/canales/6371393915683g.jpg",
"imgMini": "http://static-1.ivoox.com/usuarios/1211442557042mini.jpg",
"link": "http://www.ivoox.com/211015-contraperiodismo-matrix-nba-iluminati-audios-mp3_rf_9103980_1.html",
"title": "211015 contraperiodismo matrix. NBA iluminati."
}
]
```