Uploading
Menu

API Documentation

Our developer tools enable you to access both data regarding videos, users, comments, etc. and to interact with the video player and embed it on your own website or application.

https://mypics.com.de/api/video-id

QUICK EXAMPLE

<?php
	/* Developer API */
	$api = file_get_contents("https://mypics.com.de/api/CE6261E73C");

	$results = json_decode($api, true);

	echo $results['title'] .'<br>';
	echo $results['description'] .'<br>';
	echo $results['tags'] .'<br>';
	echo $results['preview_img'] .'<br>';
	echo $results['thumbnail'] .'<br>';
	echo $results['duration'] .'<br>';
	echo $results['height'] .'<br>';
	echo $results['width'] .'<br>';
	echo $results['likes'] .'<br>';
	echo $results['dislikes'] .'<br>';
	echo $results['comments'] .'<br>';
?>