curl --request GET \
--url https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"bank_account_types": "<array>",
"contact_relations": "<array>",
"demat_modes": "<array>",
"fatca_occupation_types": "<array>",
"genders": "<array>",
"guardian_relations": "<array>",
"holding_types": "<array>",
"income_slabs": "<array>",
"kyc_types": "<array>",
"nominee_relationships": "<array>",
"occupations": "<array>",
"pep_options": "<array>",
"tax_statuses": "<array>",
"wealth_sources": "<array>"
}Investor form options
The dropdown catalog for the investor creation form: every enum POST /api/investors/v1 accepts that a UI should render as a dropdown rather than free text (holding types, tax statuses grouped RESIDENT/NRI for the resident-vs-NRI cascade, genders, KYC types, occupations, contact relations, bank account types, demat modes, nominee/guardian relationships, and the FATCA wealth-source / income-slab / occupation / PEP tables). Countries and states have their own endpoints.
curl --request GET \
--url https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.mf-atlas.space/api/masters/v1/investor-options")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"bank_account_types": "<array>",
"contact_relations": "<array>",
"demat_modes": "<array>",
"fatca_occupation_types": "<array>",
"genders": "<array>",
"guardian_relations": "<array>",
"holding_types": "<array>",
"income_slabs": "<array>",
"kyc_types": "<array>",
"nominee_relationships": "<array>",
"occupations": "<array>",
"pep_options": "<array>",
"tax_statuses": "<array>",
"wealth_sources": "<array>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Investor form dropdown catalog
SB | CB | NE | NO.
contact.email_relation / mobile_relation vocabulary.
PHYSICAL | CDSL | NSDL.
fatca.occupation_type vocabulary.
M | F | O.
FATHER | MOTHER | COURT_APPOINTED.
SINGLE | JOINT | ANYONE_OR_SURVIVOR.
fatca.income_slab — the exchange's Applicant Income Range codes.
KRA | CKYC | EKYC.
nominees[].relationship vocabulary.
primary_holder.occupation vocabulary.
fatca.pep — YES | NO | RELATED.
The three form-supported tax statuses, grouped RESIDENT/NRI.
fatca.source_of_wealth vocabulary.