> ## Documentation Index
> Fetch the complete documentation index at: https://help.aasaan.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Store Account Information

> Get Store Account Information



## OpenAPI

````yaml get /
openapi: 3.0.0
info:
  title: AASAAN REST API
  version: 1.0.0
  description: >-
    REST API endpoints are organized by resource type. You’ll need to use
    different endpoints depending on your app’s requirements.
servers:
  - url: https://api.aasaan.shop/api/v1/stores
    description: Development server
security: []
tags: []
paths:
  /:
    get:
      tags:
        - Store
      summary: Get Store Account Information
      description: Get Store Account Information
      responses:
        '200':
          description: Store Retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Account'
        '403':
          description: Invalid Api Key
        '422':
          description: Data error
        '500':
          description: Internal Server Error
      security:
        - apiKeyAuth: []
components:
  schemas:
    Account:
      properties:
        id:
          type: string
          description: Unique identifier for the resource
          example: 623d3455ec3c4b3548eb4a322
        accountName:
          type: string
          description: Name of the store
          example: AB Grocery
        storeId:
          type: string
          description: Unique id of the store
          example: head_shoulders
        businessCategory:
          type: string
          description: Business category of the store
          example: grocery
        country:
          type: string
          description: Country code of the store
          example: IN
        currency:
          type: string
          description: Currency code of the store
          example: INR
        active:
          type: boolean
          description: Indicates whether the account is active
          example: 'true'
        image:
          type: object
          description: Store logo image
          properties:
            url:
              type: string
              description: Image URL
              example: https://images.aasaan.app/123412421
        date_created:
          type: string
          description: Created date
          example: '2022-03-25T03:17:44.092Z'
        date_modified:
          type: string
          description: Modified date
          example: '2022-06-10T07:51:12.510Z'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````