Skip to content
  • Auto
  • Light
  • Dark
Get Started

List

List
get/v2/vals/{val_id}/branches

List all branches for a val

Path Parameters
val_idstring
formatuuid
Query Parameters
limitnumber

Maximum items to return in each paginated response

minimum1
maximum100
offsetnumber

Number of items to skip in order to deliver paginated results

minimum0
Returns
dataarray of object
curl https://api.val.town/v2/vals/$VAL_ID/branches \
    -d '{}'
200 Example
{
  "data": [
    {
      "id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "createdAt": "2019-12-27T18:11:19.117Z",
      "forkedBranchId": "forkedBranchId",
      "links": {
        "html": "https://example.com",
        "self": "https://example.com"
      },
      "name": "name",
      "updatedAt": "2019-12-27T18:11:19.117Z",
      "version": 0
    }
  ],
  "links": {
    "self": "https://example.com",
    "next": "https://example.com",
    "prev": "https://example.com"
  }
}