BitBalloon is a hosting service for the programmable web. It understands your documents and provides an API to deploy sites, manage form submissions, inject javascript snippets and do intelligent updates of HTML documents. This is a REST-style API that uses JSON for serialization and OAuth 2 for authentication.
All URLs start with https://www.bitballoon.com/api/v1/. SSL only. The path is prefixed with the API version. If we change the API in backward-incompatible ways, we'll bump the version marker and maintain stable support for the old URLs.
To make a request for all the sites you have access to, you'd append the sites index path to the base url to form something like https://www.bitballoon.com/api/v1/sites. In curl, that looks like:
curl -H 'User-Agent: MyApp ([email protected])' https://www.bitballoon.com/api/v1/sites?access_token=oauth2_access_tokenBitBalloon uses OAuth2 for authentication. All requests must use HTTPS. You'll need an application client key and a client secret before you can access the BitBalloon API. You can register a new application at https://www.bitballoon.com/applications.
If you're making a public integration with BitBalloon for others to enjoy, you must use OAuth 2. This allows users to authorize your application to use BitBalloon on their behalf without having to copy/paste API tokens or touch sensitive login info.
The Oauth2 end user authorization endpoint is https://www.bitballoon.com/oauth/authorize.
/sitesall sites/sites/{site_id}/formsall forms for a site/sites/{site_id}/submissionsall submissions for a site/sites/{site_id}/filesall files for a site/sites/{site_id}/snippetsall snippets to be injected into the HTML of a site/sites/{site_id}/metadataa metadata object for a site (can be used in combination with the snippets)/sites/{site_id}/deploysall deploys for a site/formsall forms/forms/{form_id}/submissionsall submissions from a specific form/submissionsall form submissions/usersall users you have access to/users/{user_id}/sitesall sites for a specific user/users/{user_id}/formsall forms for a specific user/users/{user_id}/submissionsall form submissions for a specific user/dns_recordsdns records - resellers only/dns_records/{record_id}/dns_zonesdns zones - resellers only/access_tokensaccess tokens - resellers only
A note on the site_id: this can either be the actual id of a site, but it is interchangeable with the full domain for a site (some-site.bitballoon.com or site.example.com).
To protect BitBalloon from getting flooded by automated deploys or misbehaving applications, the BitBalloon API is rate limited.
You can make up to 200 requests per minute.
You can check the returned HTTP headers of any API request to see your current rate limit status:
X-RateLimit-Limit: 200
X-RateLimit-Remaining: 56
X-RateLimit-Reset: 1372700873
If you need higher limits, please contact us.
Requests that return multiple items will be paginated to 100 items by default. You can specify further pages with the ?page parameter. You can also set a custom page size up to 100 with the ?per_page parameter.
Note that page numbering is 1-based and that ommiting the ?page parameter will return the first page.
The pagination info is included in the Link header.
Link: <https://www.bitballoon.com/api/v1/sites?page=3&per_page=20>; rel="next",
<https://www.bitballoon.com/api/v1/sites?page=5&per_page=20>; rel="last"
Linebreak is included for readability.
The possible rel values are:
nextShows the URL of the immediate next page of results.lastShows the URL of the last page of results.prevShows the URL of the immediate previous page of results.
The /sites endpoint allows you to access the sites deployed on BitBalloon.
GET /siteswill return all sites you have access to.
[
{
"id":"3970e0fe-8564-4903-9a55-c5f8de49fb8b",
"premium":false,
"claimed":true,
"name":"synergy",
"custom_domain":"www.example.com",
"url":"http://www.example.com",
"admin_url":"https://www.bitballoon.com/sites/synergy",
"screenshot_url":null,
"created_at":"2013-09-17T05:13:08Z",
"updated_at":"2013-09-17T05:13:19Z",
"user_id":{"51f60d2d5803545326000005"},
}
]GET /sites/3970e0fe-8564-4903-9a55-c5f8de49fb8bwill return the site from its IDGET /sites/www.example.comwill return the site matching the domainwww.example.com
{
"id":"3970e0fe-8564-4903-9a55-c5f8de49fb8b",
"premium":false,
"claimed":true,
"name":"synergy",
"custom_domain":"www.example.com",
"notification_email":"[email protected]",
"url":"http://www.example.com",
"admin_url":"https://www.bitballoon.com/sites/synergy",
"screenshot_url":null,
"created_at":"2013-09-17T05:13:08Z",
"updated_at":"2013-09-17T05:13:19Z",
"user_id":{"51f60d2d5803545326000005"},
}Creating a site will initiate a new deploy. You can either create a new site with a list of files you intend to upload, or by posting a ZIP file.
POST /siteswithzip=zip-file. You must useContent-Type: multipart/form-datato send the zip file in a property calledzip.
{
"id": "3970e0fe-8564-4903-9a55-c5f8de49fb8b",
"subdomain": "some-autogenerated-subdomain",
"url": "http://some-autogenerated-subdomain.bitballoon.com",
"state": "processing",
"required": []
}This will return 201 Created with the API URL for the new site in the Location header, along with a simplified JSON representation of the site. The site will be in the processing state and you can poll the URL in the Location header until the state has changed to either ready or error.
Here's an example of creating a new site from a zip file called landing.zip via Curl (assuming you've gone through the process to get an oauth access_token)
curl -F "[email protected];type=application/zip" https://www.bitballoon.com/api/v1/sites?access_token={access_token}POST /siteswith{files: {"/index.html": "SHA1_OF_YOUR_INDEX_HTML"}}will create a new site in theuploadingstate. You must useContent-Type: application/json
The files object should contain all the files you wish to upload for this deploy, together with a SHA1 of the content of each file.
{
"id": "3970e0fe-8564-4903-9a55-c5f8de49fb8b",
"subdomain": "some-autogenerated-subdomain",
"url": "http://some-autogenerated-subdomain.bitballoon.com",
"state": "uploading",
"required": ["SHA1_OF_YOUR_INDEX_HTML"]
}This will return 201 Created with the API URL for the new site in the Location header, along with a simplified JSON representation of the site. The required property will give you a list of files you need to upload. BitBalloon will inspect the SHA1s you sent in the request. You'll only need to upload the files BitBalloon doesn't have on its servers. The state can be either uploading or processing depending on whether or not you need to upload any more files.
To upload any required files, use the PUT /sites/{site_id}/files/{path} endpoint for each file. Once all the files are uploaded, the processing of the site will begin.
PATCH /sites/{site_id}will let you update some attributes on a sitePUT /sites/{site_id}will let you update some attributes on a site
This lets you update the name, custom_domain, password and notification_email fields of a site.
DELETE /sites/{site_id}will permanently delete a siteDELETE /sites/{site_domain}will permanently delete a site
This will return 200 OK.
The /submissions endpoint gives access to the form submissions of your BitBalloon sites. You can scope submissions to a specific site (/sites/{site_id}/submissions) or to a specific form (/forms/{form_id}/submissions).
GET /submissionswill return a list of form submissions
[
{
"id":"5231110b5803540aeb000019",
"number":13,
"title":null,
"email":"[email protected]",
"name":"Mathias Biilmann",
"first_name":"Mathias",
"last_name":"Biilmann",
"company":"BitBalloon",
"summary":"Hello, World",
"body":"Hello, World",
"data": {
"email":"[email protected]",
"name": "Mathias Biilmann",
"ip":"127.0.0.1"
},
"created_at":"2013-09-12T00:55:39Z",
"site_url":"http://synergy.bitballoon.com"
}
]The /forms endpoint allow you to access forms from your BitBalloon sites. You can scope forms to a specific site with /sites/{site_id}/forms.
GET /formswill return a list of forms
[
{
"id":"ac0865cc46440b1e64666f520e8d88d670c8a2f6",
"site_id":"0d3a9d2f-ef94-4380-93df-27ee400e2048",
"name":"Landing Page",
"paths":["/index"],
"submission_count":3,
"fields": [
{"name":"name","type":"text"},
{"name":"email","type":"email"},
{"name":"phone","type":"text"},
{"name":"company","type":"text"},
{"name":"website","type":"url"},
{"name":"number_of_employees","type":"select"}
],
"created_at":"2013-09-18T20:26:19Z"
}
]All files deployed by BitBalloon can be read, updated and deleted through the API. Where the public URL of a file will serve the processed version, the files accessed through the API are the original uploaded files. Any changes to a file will trigger a reprocessing of the site and a new deploy will be stored in the site history. This means all changes made through the API can always be rolled back by the user through the dashboard UI.
GET /sites/{site_id}/fileswill return a list of all the files in the current deploy
[
{"id":"/index.html",
"path":"/index.html",
"sha":"20828dcdf2cd07e5980fe52759101591bf5014ab",
"mime_type":"text/html",
"size":27232
}
]GET /sites/{site_id}/files/{path-to-file}returns the file
{"id":"/index.html",
"path":"/index.html",
"sha":"20828dcdf2cd07e5980fe52759101591bf5014ab",
"mime_type":"text/html",
"size":27232
}You can get the raw contents of the file by using the custom media type application/vnd.bitballoon.v1.raw as the Content-Type of your HTTP request.
PUT /sites/{site_id}/files/{path-to-file}will add or update a file, reprocess all assets and create a new deploy
The request body will be used as the new content for this file. If the site is still in uploading mode (after creating a site with a list of files) and this is the last file
DELETE /sites/{site_id}/files/{path-to-file}will delete a file from the site.
Note that this creates a new version of the site without the deleted file. The old version can still be rolled back and the file does not get deleted from BitBalloon's servers.
Snippets are code snippets that will be injected into every HTML page of the website, either right before the closing head tag or just before the closing body tag. Each snippet can specify code for all pages and code that just get injected into "Thank you" pages shown after a successful form submissions.
GET /sites/{site_id}/snippetsget a list of snippets specific to this site (a reseller may set global snippets that won't be included in this list)
[
{
"id":0,
"title":"Test",
"general":"\u003Cscript\u003Ealert(\"Hello\")\u003C/script\u003E",
"general_position":"head",
"goal":"",
"goal_position":"footer"
}
]The general property is the code that will be injected right before either the head or body end tag. The general_position can be head or footer and determines whether to inject the code in the head element or before the closing body tag.
The goal property is the code that will be injected into the "Thank you" page after a form submission. goal_position determines where to inject this code.
GET /sites/{site_id}/snippets/{snippet_id}get a specific snippet
{
"id":0,
"title":"Test",
"general":"\u003Cscript\u003Ealert(\"Hello\")\u003C/script\u003E",
"general_position":"head",
"goal":"",
"goal_position":"footer"
}POST /sites/{site_id}/snippetsadd a new snippet to a site.
PUT /sites/{site_id}/snippets/{snippet_id}replace a snippet.
DELETE /sites/{site_id}/snippets/{snippet_id}delete a snippet.
Each site has a metadata object. The properties of the metadata object can be used within the snippets for a site by sing the Liquid template syntax.
GET /sites/{site_id}/metadataget the metadata for a site
{
"my_meta_key": "my_meta_value"
}PUT /sites/{site_id}/metadatareplace the metdata object with a new metadata object
You can access all deploys for a specific site.
GET /sites/{site_id}/deploysa list of all deploys
[
{
"id":"52465f435803544542000001",
"premium":false,
"claimed":true,
"name":"synergy",
"custom_domain":"www.example.com",
"notification_email:"[email protected]",
"url":"http://www.example.com",
"deploy_url": "http://52465f435803544542000001.some-site.bitballoon.com",
"admin_url":"https://www.bitballoon.com/sites/synergy",
"screenshot_url":null,
"created_at":"2013-09-17T05:13:08Z",
"updated_at":"2013-09-17T05:13:19Z",
"user_id":{"51f60d2d5803545326000005"},
"state": "old"
}
]GET /sites/{site_id}/deploys/{deploy_id}a specific deploy
{
"id":"52465f435803544542000001",
"premium":false,
"claimed":true,
"name":"synergy",
"custom_domain":"www.example.com",
"notification_email:"[email protected]",
"url":"http://www.example.com",
"deploy_url": "http://52465f435803544542000001.some-site.bitballoon.com",
"admin_url":"https://www.bitballoon.com/sites/synergy",
"screenshot_url":null,
"created_at":"2013-09-17T05:13:08Z",
"updated_at":"2013-09-17T05:13:19Z",
"user_id":{"51f60d2d5803545326000005"},
"state": "old"
}POST /sites/{site_id}/deploys/{deploy_id}/restorerestore an old deploy and make it the live version of the site
{
"id":"52465f435803544542000001",
"premium":false,
"claimed":true,
"name":"synergy",
"custom_domain":"www.example.com",
"notification_email:"[email protected]",
"url":"http://www.example.com",
"deploy_url": "http://52465f435803544542000001.some-site.bitballoon.com",
"admin_url":"https://www.bitballoon.com/sites/synergy",
"screenshot_url":null,
"created_at":"2013-09-17T05:13:08Z",
"updated_at":"2013-09-17T05:13:19Z",
"user_id":{"51f60d2d5803545326000005"},
"state": "current"
}Mainly useful for reseller admins. Lets you access all users under your reseller account.
GET /usersget a list users you have access to
[
{
"id": "52465eb05803543960000015",
"email":"[email protected]",
"affiliate_id":"",
"site_count":1,
"created_at":"2013-09-28T04:44:32Z",
"last_login":"2013-09-28T04:44:33Z"
}
]Once you have a user id you can query sites, forms and submissions scoped to that user (ie. /users/{user_id}/sites).
Resellers only. Manage DNS Zones
GET /dns_zonesget a list of DNS zones
[
{
"id": "5286d0aa58035476d0000005",
"name":"www.example.com",
"user_id":"52841ed05803545ef0000001",
"created_at":"2013-11-16T01:55:54Z",
"updated_at":"2013-11-16T01:55:54Z"
}
]POST /dns_zonescreate a new dns zone, arguments:name
Returns 201 on successful creation
DELETE /dns_zones/{zone_id}delete a dns zone
GET /dns_zones/{zone_id}/dns_recordsget a list of dns records
[
{
"id":"5286d29658035476d0000006",
"hostname":"www",
"type":"CNAME",
"value":"bitballoon.com",
"ttl":"500",
"domain_id":"5286d0aa58035476d0000005"
}
]POST /dns_zones/{zone_id}/dns_recordsarguments:type,hostname,value,ttl- supported types: A, CNAME, TXT, MX
Returns 201 on successful creation
DELETE /dns_zones/{zone_id}/dns_records/{id}deletes a record
Return 204 with an empty body
Resellers only. Issue and revoke access tokens on behalf of your users
POST /access_tokenscreate an access token for a user. Supply a user:{"user": {"email": "[email protected]", "uid": "123"}}
{
"id":"6da5e4827ef6ac05b123279c6ed84c3125bbba59d65facb20d20fb1e73f3c62a",
"access_token":"6da5e4827ef6ac05b123279c6ed84c3125bbba59d65facb20d20fb1e73f3c62a",
"user_id":"52841ed05803545ef0000001",
"created_at":"2013-11-16T01:54:57Z"
}DELETE /access_tokens/{token}revokes the access token
Returns 204 with an empty body