openapi: 3.0.1 info: title: Orbit Activities Users API version: v1 description: Please see the complete Orbit API documentation at [https://api.orbit.love/](https://api.orbit.love/). servers: - url: http://web.archive.org/web/20240303060821/https://app.orbit.love/api/v1 tags: - name: Users paths: /user: get: summary: Get info about the current user tags: - Users security: - bearer: [] responses: '200': description: success content: application/json: example: data: id: Ze1FV4 type: user attributes: name: AnnaleeWolf updated_at: '2023-06-21T14:54:03.908Z' created_at: '2023-06-21T14:54:03.908Z' email: carlie.jacobi@ryan.net '401': description: unauthorized components: securitySchemes: bearer: type: http scheme: bearer description: Provide a Authorization header with format 'Bearer '. This is the recommended approach. Make sure to include the 'Bearer' part in the text box here. api_key: type: apiKey name: api_key in: query description: Provide the API key in a query param called api_key. This is the least secure method, please use only for testing.