This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl https://api.clarify.io/v1/bundles/abcde12345/insights/fadbe23456 \ | |
--header "Authorization: Bearer myapikey" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --data "insight=captions_r9" https://api.clarify.io/v1/bundles/abcde12345/insights \ | |
--header "Authorization: Bearer myapikey" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --data "media_url=http://media.clarify.io/video/presentations/SirKenRobinson-TED2006-How-Schools-Kill-Creativity.mp4" \ | |
--data "name=Sir Ken Robinson – TED 2006" https://api.clarify.io/v1/bundles \ | |
--X POST --header "Authorization: Bearer myapikey" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bundle_id": "abcde12345", | |
"created": "2015-05-16T20:39:37.507Z", | |
"id": "54321edcba", | |
"name": "spoken_keywords", | |
"status": "ready", | |
"track_data": [ | |
{ | |
"keywords": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl https://api.clarify.io/v1/bundles/abcde12345/insights/54321edcba \ | |
--header "Authorization: Bearer myapikey" | jq '.' | |
# The jq portion is optional and just used to pretty print the resulting json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id":"abcde12345", | |
"_class":"Ref", | |
"_links":{ | |
"self":{ | |
"href":"/v1/bundles/abcde12345" | |
}, | |
"curies":[ | |
{ | |
"href":"/docs/rels/{rel}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --data "media_url=http://media.clarify.io/audio/books/dorothyandthewizardinoz_01_baum_64kb.mp3" \ | |
--data "notify_url=http://example.org/sample-receiver" \ | |
--data "name=Dorothy and the Wizard of Oz" https://api.clarify.io/v1/bundles \ | |
--X POST --header "Authorization: Bearer myapikey" | jq '.' | |
# The jq portion is optional and just used to pretty print the resulting json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl https://api.clarify.io/v1/search?query=compris \ | |
--data "language=fr" \ | |
--header "Authorization: Bearer myapikey" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_class": "ClassificationInsight", | |
"bundle_id": "abcde12345", | |
"created": "2015-09-17T18:48:48.058Z", | |
"id": "edcba56789", | |
"name": "classification", | |
"status": "ready", | |
"updated": "2015-09-17T18:48:48.061Z", | |
"_links": { | |
"clarify:bundle": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl https://api.clarify.io/v1/bundles/abcde12345/insights/edcba56789 \ | |
--header "Authorization: Bearer myapikey" | jq '.' | |
# The jq portion is optional and just used to pretty print the resulting json |