> ## Documentation Index
> Fetch the complete documentation index at: https://ajuda.memberkit.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Retorna conta

> Retorna área de membros autenticada.



## OpenAPI

````yaml GET /api/v1/academy
openapi: 3.1.0
info:
  title: MemberKit
  description: ''
  version: 1.0.0
servers: []
security:
  - apikey-query-api_key: []
tags:
  - name: academies
  - name: courses
  - name: lessons
  - name: memberships
  - name: classrooms
  - name: rankings
  - name: users
  - name: scores
  - name: quizzes
  - name: hooks
  - name: comments
paths:
  /api/v1/academy:
    get:
      tags:
        - academies
      summary: Retorna conta
      description: Retorna área de membros autenticada.
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Academy'
          headers: {}
      deprecated: false
      security:
        - apikey-query-api_key: []
components:
  schemas:
    Academy:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        subdomain:
          type: string
        custom_domain:
          type:
            - string
            - 'null'
        email:
          type:
            - string
            - 'null'
          format: email
        url:
          type: string
          format: uri
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - name
        - subdomain
        - custom_domain
        - email
        - url
        - created_at
        - updated_at
  securitySchemes:
    apikey-query-api_key:
      type: apiKey
      in: query
      name: api_key

````