Blog API
4 min
We provide simple, rate-limited API if you want to fetch all blog articles. Citation is mandatory! Please use it instead of crawling our website periodically. We are producing very often new content for speech and voice recognition, machine learning, and NLP.
Keep in mind, API will work without token but will have some rate limits. If you send a request with a token, the limits will be much higher.
https://voxpow.com/api/v1/articles/Example call (Limited)
curl https://voxpow.com/api/v1/articles/Example call (Not Limited)
curl https://voxpow.com/api/v1/articles/ -H 'Authorization: Token g177113c541ac26fe5d421f5db7155eac309cee2'Response
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"url": "https://voxpow.com/blog/history-and-usage-voice-control/",
"date": "2020-01-03",
"excerpt": "The first electronic speech synthesizer was invented by Homer Dudley, a Bell associate, in 1937. The device is called the Voder. And the first to get involved in speech recognition using electronics is the Soviet physicist Lev Myasnikov - he worked on it in 1939 as part of his dissertation "Technical Phonetics".",
"header_image": {
"url": "https://cdn.voxpow.com/media/original_images/girl-use-speech-recognition.jpg",
"title": "girl-use-speech-recognition.jpg",
"width": 1440,
"height": 900
},
"categories": [
{
"name": "Voice Recognition",
"slug": "voice-recognition"
}
]
}
]
}