• Deefunia.com Supported Language

  • Google Ads

Category: API Documentation

How to built a uploaded or copied photo over deefunia api?

In order to build a photo with deefunia api in php, you will need to do this step. $url = "http://api.deefunia.com/?a=b&tid=[template id]&suid=[successful upload or copied id]&hash=[the hash of suid]; $built = file_get_contents($url);… more »

How to get a photo in server copied over deefunia for preparation of photomaking

$url = "http://api.deefunia.com/?a=c&iurl=[URL of photo]&token=[token given by deefunia api]&hash=[hash that comes with token]; $copy = file_get_contents($url); $result = json_decode($copy, true);print_r($result);*A token must be va… more »

How to get a token for upload a photo to deefunia

This is how we get a deefunia api token for upload or copy from url.//get deefunia token$url = "http://api.deefunia.com/?a=t&f=json";$content = file_get_contents($url);$token = json_decode($content, true);print_r($token); more »

How to get a deefunia listing with deefunia API

To get a list of available templates through PHP is as follow://list templates$url = "http://api.deefunia.com/?a=l&f=json";$content = file_get_contents($url);$json = json_decode($content, true);print_r($json); more »

Deefunia API version 1 (Beta)

Result will be shown in the form of JSON format.Will be extended to other format like array and XML format in the future.To list the templates available in Deefunia:http://api.deefunia.com/?a=lTo get a token for photo uploading:coming soon… more »