# Get User Info

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v1/me:
    get:
      summary: Get User Info
      deprecated: false
      description: >-
        Retrieve basic information about the currently authenticated user,
        including their account balance and subscription plan details.
      tags:
        - User
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  credits:
                    type: string
                    description: The user's account balance as a string.
                  excessCredits:
                    type: string
                    description: The user's remaining credits (if applicable), as a string.
                  plan:
                    type: object
                    properties:
                      credits:
                        type: string
                        description: >-
                          Remaining balance within the subscription plan, as a
                          string.
                      endAt:
                        type: string
                        description: Subscription plan expiry date in ISO 8601 format.
                      price:
                        type: integer
                        description: The price of the subscription plan, as a number.
                      status:
                        type: integer
                        description: The status of the subscription plan (0 for inactive).
                      usage:
                        type: integer
                        description: >-
                          The current usage of the subscription plan, as a
                          number.
                    required:
                      - credits
                      - endAt
                      - price
                      - status
                      - usage
                    x-apidog-orders:
                      - credits
                      - endAt
                      - price
                      - status
                      - usage
                    description: Details about the user's subscription plan.
                  status:
                    type: integer
                    description: General user status (1 for active users).
                  userId:
                    type: string
                    description: The unique identifier of the user.
                required:
                  - credits
                  - excessCredits
                  - plan
                  - status
                  - userId
                x-apidog-orders:
                  - credits
                  - excessCredits
                  - plan
                  - status
                  - userId
              example:
                credits: '82.1495994348'
                excessCredits: '0'
                plan:
                  credits: '0'
                  endAt: '2099-12-31T23:59:59.999Z'
                  price: 0
                  status: 0
                  usage: 0
                status: 1
                userId: fad03c7e-xxxx-xxxx-b066-ece80f03d5d5
          headers: {}
          x-apidog-name: Success
      security:
        - apikey-header-x-api-token: []
      x-apidog-folder: User
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/745098/apis/api-11949851-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: bearer
      scheme: bearer
      description: Bearer token authentication using your Scrapeless API key
    apikey-header-x-api-token:
      type: apiKey
      in: header
      name: x-api-token
servers:
  - url: https://api.scrapeless.com
    description: Prod Env
security:
  - apikey-header-x-api-token: []

```
