API documentation

YouClone ยป POST

Export videos from a YouTube account to any other video sites.

Arguments

  • site name (Required if no saved credentials)

    The value must be login:password.
    If you saved your credentials, you don't need to submit the credentials here unless you want to use another account. You can add many site credentials at once.
    Eg. youtube=ytlogin:yt:password&google=google@gmail.com:googlepassword&revver=...&...

Note: You must give a YouTube account and another site account at least.

Request example

Export all the videos from the given YouTube account to Dailymotion.

cURL

curl -X POST \
-d "api_key=75b5744011e2dddbf2261e157505958b" \ 
-d "youtube=login:password&dailymotion=login:password" \
--url "http://heyspread.com/api2/youclone"

Ruby

export = HeySpread::YouClone.new
export.youtube_account = ["login", "password"]
export.destinations["dailymotion"] = ["login", "password"]
export.save

PHP

$export = new HeySpread_YouClone();
$export->setYouTubeAccount(array("login", "password"));
$export->destinations["dailymotion"] = array("login", "password");
$export.save();

Response example

201 Created

All good, empty response.