# Authentication The following headers are required for all requests: ### Headers ``` "X-Api-Key": [key] "X-Api-Token": [token] ``` The API key and token can be found at: https://app.cacher.io/enter?action=view_api_creds # List teams Get all teams accessible to the authenticated user. ```GET: https://api.cacher.io/v1/teams``` ## Request ### Query Params None ## Response ### Body ``` { teams: [ { name: "Dev Ops", screenname: "dev-ops", guid: "2d7d9a32fa5d30131f63", createdAt: "2018-12-31T21:15:22Z", updatedAt: "2019-03-26T15:20:44Z", members: [ { id: 6, name: "Lydia", email: "lydia@example.com", image: null, nickname: "lydia" } ], managers: [], owner: { id: 8, name: "Rui", email: "rui@cacher.io", image: "https://avatars3.githubusercontent.com/u/570858?v=4", nickname: "rui" } }, ... ] } ```