Bizzky uses an Application Programming Interface (API) to expose some of its features. In this page we will show you how to use our API and how to interact with our application.
To use our services you will need an API Key. Just send us an email with your Name, Email and a Description of the application where you will use our API and we will provide you with an API Key to use with our services. Registered users should provide the email used in registration. Unregistered users will only have access to the business pool and jobs pool services.
Important note: New API features are coming!
http://bizzky.com/theservice.php?f=gp&k=YOUR_API_KEY&e=YOUR_EMAILand you will receive a XML Response like:
&p=YOUR_PASSWORD
<?xml version="1.0" encoding="UTF-8"?>
<service>
<profile>
<company>Company 1</company>
<sector>Internet</sector>
<location>London, U.K.</location>
<address>Abc Street</address>
<phone>+4423232323</phone>
<webpage>http://webpage.com</webpage>
</profile>
</service>
http://bizzky.com/theservice.php?f=an&k=YOUR_API_KEY&e=YOUR_EMAILand you will receive a XML Response like:
&p=YOUR_PASSWORD&t=NEWS_TITLE&n=NEWS_CONTENT
<?xml version="1.0" encoding="UTF-8"?> <service> <news>added</news> </service>
http://bizzky.com/theservice.php?f=gn&k=YOUR_API_KEY&e=YOUR_EMAILand you will receive a XML Response like:
&p=YOUR_PASSWORD
<?xml version="1.0" encoding="UTF-8"?>
<service>
<news>
<title>Big news!</title>
<content>The content!</content>
<date>08/01/2008 12:45.</date>
</news>
<news>
...
</news>
</service>
http://bizzky.com/theservice.php?f=aj&k=YOUR_API_KEY&e=YOUR_EMAILand you will receive a XML Response like:
&p=YOUR_PASSWORD&j=JOB_POSITION&d=JOB_DESCRIPTION
<?xml version="1.0" encoding="UTF-8"?> <service> <job>added</job> </service>
http://bizzky.com/theservice.php?f=gj&k=YOUR_API_KEY&e=YOUR_EMAILand you will receive a XML Response like:
&p=YOUR_PASSWORD
<?xml version="1.0" encoding="UTF-8"?>
<service>
<job>
<position>Job Position</position>
<description>Job description</description>
</job>
<job>
...
</job>
</service>
http://bizzky.com/theservice.php?f=ap&k=YOUR_API_KEY&e=YOUR_EMAILand you will receive a XML Response like:
&p=YOUR_PASSWORD&n=PRODUCT_NAME&d=PRODUCT_DESCRIPTION
<?xml version="1.0" encoding="UTF-8"?> <service> <product>added</product> </service>
http://bizzky.com/theservice.php?f=gp&k=YOUR_API_KEY&e=YOUR_EMAILand you will receive a XML Response like:
&p=YOUR_PASSWORD
<?xml version="1.0" encoding="UTF-8"?>
<service>
<product>
<name>Product name</name>
<description>Product description</description>
<website>Product website</website>
</product>
<product>
...
</product>
</service>
http://bizzky.com/thebusinesspool.php?k=YOUR_API_KEYand you will receive a XML Response like:
<?xml version="1.0" encoding="UTF-8"?>
<businesspool>
<entry>
<company>Company 1</company>
<type>1</type>
<title>News Title</title>
<content>News Content</content>
<date>2008-01-31 09:51:28</date>
</entry>
<entry>
<company>Company 2</company>
<type>2</type>
<name>Product Name</name>
<description>Product Description</description>
<webpage>http://productwebpage.com</webpage>
</entry>
<entry>
...
</entry>
<entry>
...
</entry>
</businesspool>
<businesspool> stands for root levelhttp://bizzky.com/thejobspool.php?k=YOUR_API_KEY
and you will receive a XML Response like:
<?xml version="1.0" encoding="UTF-8"?>
<jobspool>
<entry>
<company>Company 1</company>
<position>Web Developer</position>
<description>An expert PHP developer</description>
</entry>
<entry>
...
</entry>
<entry>
...
</entry>
</jobspool>
<jobspool> stands for root levelIf you have any problems, doubts or suggestions related with our API please contact us.