REST Developers API

The REST API returns XML or JSON (new) formatted output to describe Spongecell objects. This is our newest format and we are still working on it. Send us some comments!

Specify JSON output by appending format=json to the call.

Method List

calendar
Retrieve all calendar data for username.
calendar_add
Add an event to your calendar.
event
Get information for an event.
event_delete
Delete an event.
event_new
Create a new event.
event_update
Update an existing event.
sponge
Create an event using the sponge.
user
Retrieve information about a user.

Error Format

When a REST API method encounters errors, an xml object is returned with the status set to failed. The error_code and msg are also set.

Default XML

<rsp status="failed">
    <msg>Invalid specified parameter.</msg>
    <error_code>5</error_code>
</rsp>

JSON New!

{"rsp":{"status":"failed","content":{"msg":"Invalid specified parameter.","error_code":5}}}