curl --request POST \
--url https://api.casparser.in/v1/verify/mfd \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"arn": "123456"
}
'import requests
url = "https://api.casparser.in/v1/verify/mfd"
payload = { "arn": "123456" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({arn: '123456'})
};
fetch('https://api.casparser.in/v1/verify/mfd', 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.casparser.in/v1/verify/mfd",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'arn' => '123456'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.casparser.in/v1/verify/mfd"
payload := strings.NewReader("{\n \"arn\": \"123456\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.casparser.in/v1/verify/mfd")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"arn\": \"123456\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.casparser.in/v1/verify/mfd")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"arn\": \"123456\"\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"verified": true,
"authority": "AMFI",
"category": "mutual-fund-distributor",
"category_label": "Mutual Fund Distributor (ARN)",
"arn": "123456",
"name": "Example Wealth Distributors LLP",
"euin": "E123456",
"kyd_compliant": true,
"registration_status": "ACTIVE",
"valid_from": "2024-04-01",
"valid_till": "2027-03-31",
"is_perpetual": false,
"address": "MG Road, Bengaluru, Karnataka",
"pincode": "560001",
"negative_list_hit": false,
"negative_list": null
}Verify an AMFI mutual-fund distributor (ARN)
Verify a mutual-fund distributor by ARN. The ARN (and its EUIN) is
screened against AMFI’s suspended, terminated, and terminated-EUIN
lists; a hit sets registration_status to SUSPENDED/TERMINATED,
negative_list_hit to true, and verified to false.
Credits: 0.25 per successful verification.
curl --request POST \
--url https://api.casparser.in/v1/verify/mfd \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"arn": "123456"
}
'import requests
url = "https://api.casparser.in/v1/verify/mfd"
payload = { "arn": "123456" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({arn: '123456'})
};
fetch('https://api.casparser.in/v1/verify/mfd', 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.casparser.in/v1/verify/mfd",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'arn' => '123456'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.casparser.in/v1/verify/mfd"
payload := strings.NewReader("{\n \"arn\": \"123456\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.casparser.in/v1/verify/mfd")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"arn\": \"123456\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.casparser.in/v1/verify/mfd")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"arn\": \"123456\"\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"verified": true,
"authority": "AMFI",
"category": "mutual-fund-distributor",
"category_label": "Mutual Fund Distributor (ARN)",
"arn": "123456",
"name": "Example Wealth Distributors LLP",
"euin": "E123456",
"kyd_compliant": true,
"registration_status": "ACTIVE",
"valid_from": "2024-04-01",
"valid_till": "2027-03-31",
"is_perpetual": false,
"address": "MG Road, Bengaluru, Karnataka",
"pincode": "560001",
"negative_list_hit": false,
"negative_list": null
}Authorizations
Your API key for authentication.
Use sandbox-with-json-responses as Sandbox key.
Body
AMFI Registration Number. Digits only; an ARN- prefix is tolerated.
^(ARN-)?[0-9]+$"123456"
Response
Verification completed (found or not found)
Result of an AMFI mutual-fund distributor (ARN) verification. Every listed property is always present on a 200 response (null when not applicable); verified is the boolean gate to act on.
success True only when the ARN is on the active register and not on an adverse list.
AMFI mutual-fund-distributor "123456"
ACTIVE = on the active register; SUSPENDED / TERMINATED = on an AMFI adverse list (see negative_list); EXPIRED = ARN validity lapsed; NOT_FOUND = no active registration and not on an adverse list.
ACTIVE, EXPIRED, SUSPENDED, TERMINATED, NOT_FOUND True when the ARN/EUIN appears on an AMFI adverse list.
"Mutual Fund Distributor (ARN)"
Details of the adverse-list hit, else null.
Show child attributes
Show child attributes
Was this page helpful?

