Skip to content

Locations API

Christopher Posada edited this page Apr 10, 2019 · 1 revision

Endpoint

api/locations (give me all the locations)

Response

[
    {
        "name": "Buildit Brooklyn",
        "id": 1
    },
    {
        "name": "Doge Planet",
        "id": 2
    }
]

Endpoint

api/locations/{id} (give me the location {id})

Response

    {
        "name": "Buildit Brooklyn",
        "id": 1
    }

Notes

No auth token required.

Clone this wiki locally