> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mf-atlas.space/llms.txt
> Use this file to discover all available pages before exploring further.

# List states

> The Indian states/UTs the investors API accepts in address.state, as dropdown options (value = the exact string to send, e.g. "Maharashtra"). Anything outside this list silently registers as the exchange's OTHERS bucket, so investor-creation UIs should pin their state input to these values.



## OpenAPI

````yaml /openapi.yaml get /api/masters/v1/states
openapi: 3.0.3
info:
  title: MF Atlas API
  version: 1.0.0
servers:
  - description: Sandbox
    url: https://api-sandbox.mf-atlas.space
  - description: Production
    url: https://api.mf-atlas.space
security:
  - bearerAuth: []
paths:
  /api/masters/v1/states:
    get:
      tags:
        - masters
      summary: List states
      description: >-
        The Indian states/UTs the investors API accepts in address.state, as
        dropdown options (value = the exact string to send, e.g. "Maharashtra").
        Anything outside this list silently registers as the exchange's OTHERS
        bucket, so investor-creation UIs should pin their state input to these
        values.
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  group:
                    description: RESIDENT | NRI — set on tax statuses.
                    type: string
                  label:
                    description: Human-readable label for a UI dropdown.
                    type: string
                  value:
                    description: The value to send in the matching request field.
                    type: string
                type: object
          description: State options
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: Opaque bearer token from POST /api/auth/v1/token
      scheme: bearer
      type: http

````