PROJECTS•HAKOBYTE


Active projects: 3



API(beta)

The projects•hakobyte REST API is basic and easy to use for developers who want to consume or integrate our projects data with their applications.

Our API responds to requests in JSON only.


BASE URL

https://api.projects.hakobaito.co.uk

Projects

GET /projects


Fetches all projects.


Optional Parameters:
count

(boolean) - returns the number of projects. (false by default)

active

(boolean) - returns the number of active projects. (false by default)


GET {BASE URL}/projects


Response Example


{
  "projects": [
      {
        "name":"4a01744a149b28df",
        "p_id":"4a01744a149b28df",
        "timestamp":1427319029,
        "url":""
      }
    ]
}

returns 200 OK on success.


GET /projects/{id}


Fetches an individual project.

where {id} is p_id (project id)


GET {BASE URL}/projects/{id}


Response Example


{
  "timestamp": 1427319029,
  "release_date": "TBA",
  "updated_at": "2015-03-25 21:30:29 PM",
  "created_at": "2015-03-25 20:30:04 PM",
  "cancelled": false,
  "on_hold": false,
  "is_finished": false,
  "percentage_finished": 77,
  "p_id": "4a01744a149b28df",
  "name": "4a01744a149b28df",
  "length": "short",
  "status": "Scene 5 done.",
  "type": "animation",
  "name_hidden": true,
  "url":""
}

returns 200 OK on success.