We have a simple, json-based API with basic functionalities (creating users, modify user data, creating boards, modify board data, delete boards, etc). We’re pricing each function individually – which you can use without restrictions. This way you can put together the exact feature-pack you need from the API. We’re also open to providing custom API functions. Let us know what you’d need. As an example:
CREATE BOARD - creates a new, empty board by user ID
curl -X POST https://apidemon.ziteboard.com/api/createboard --data "api_key=111122223333&uid=123456"
return:
{
"success":true,
"message":"success",
"uid":"123456",
"board":
{
"title":"demo",
"type":"public",
"bid":"e99505db-8c19-481e-a6c8-a09a21ee05e3",
"uid":"123456",
"name":"Mick",
"createdAt":"2017-02-11T18:37:22.698Z",
"updatedAt":"2017-02-13T15:21:39.300Z",
"image":"data:image/png;base64,iVBOR_BLA_BLA_BLA"
}
}