> ## 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.

# Get investor

> Full investor. PII (PAN, email, mobile, bank account numbers) is always masked — use POST :id/unmask for a single plaintext value.



## OpenAPI

````yaml /openapi.yaml get /api/investors/v1/:id
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: []
paths:
  /api/investors/v1/:id:
    get:
      tags:
        - investors
      summary: Get investor
      description: >-
        Full investor. PII (PAN, email, mobile, bank account numbers) is always
        masked — use POST :id/unmask for a single plaintext value.
      parameters:
        - description: ''
          in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  created_at:
                    type: string
                  id:
                    type: string
                  provider:
                    type: string
                  provider_steps:
                    description: >-
                      History of provisioning attempts (UCC registration, FATCA
                      submission, ...), most recent last — where rejections
                      surface.
                    type: array
                  providers:
                    type: array
                  status:
                    description: PENDING | PROCESSING | REGISTERED | REJECTED.
                    type: string
                  updated_at:
                    type: string
                type: object
          description: Investor

````