Events Photos Organizations Designs Forums
Create an Event
Help Login Sign Up
Home Profile Friends Messages Address Book

Socializr API Documentation

Socializr's API currently supports a RESTful interface with a set of methods as well as different options for the response format.

How do I use it?

All you need to do is call the Socializr API URL (GET and POST are both supported) at http://api.socializr.com/api/rest with your API key, API method, API version, an optional response format, and any other parameters that are required.

An example query would look like this:
http://api.socializr.com/api/rest?api_key=<YOUR_KEY>&version=1.0&format=xml&method=user.getInfo&id=12345

An example response to that query would look like this:
<?xml version="1.0" encoding="UTF-8"?>
<rsp status="ok" version="1.0" method="user.getInfo">
  <user>
    <id>12345</id>
    <name>John Doe</name>
    <url>http://www.socializr.com/user/johndoe</url>
    <photo>http://photos3.socializr.com/12/34/56/123456789t.jpg</photo>
    <location>San Francisco, CA</location>
  </user>
</rsp>

An example error response would look like this:
<?xml version="1.0" encoding="UTF-8"?>
<rsp status="fail" version="1.0" method="user.getInfo">
  <error code="200" description="User not found." />
</rsp>

Response Formats

API Versions

Socializr supports versioning of its API for backwards compatibility.
The only version of the API that exists now is 1.0.

Methods

user
event
organization

Help and Feedback

Need help? Want to post any suggestions or feature requests?
Try looking in our developer forum.

Need an API key? Get one here.