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

> Fetches an investor draft via a public link.



## OpenAPI

````yaml /openapi.yaml get /api/public/v1/investor-drafts/{link_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:
  - bearerAuth: []
paths:
  /api/public/v1/investor-drafts/{link_id}:
    get:
      tags:
        - public-investors
      summary: Get investor draft
      description: Fetches an investor draft via a public link.
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  auth_link:
                    description: >-
                      NSE's UCC confirmation/short-URL link, populated only when
                      the request includes ?auth_link=true and the investor is
                      REGISTERED.
                    type: string
                  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
                  public_links:
                    type: array
                  simulation_links:
                    type: object
                  status:
                    description: DRAFT | PENDING | PROCESSING | REGISTERED | REJECTED.
                    type: string
                  updated_at:
                    type: string
                type: object
          description: Investor data
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: Opaque bearer token from POST /api/auth/v1/token
      scheme: bearer
      type: http

````