curl --request POST \
--url https://api.casparser.in/v1/verify/sebi \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"registration_number": "INP000000670",
"name": "Motilal Oswal",
"type": "portfolio-manager"
}
'import requests
url = "https://api.casparser.in/v1/verify/sebi"
payload = {
"registration_number": "INP000000670",
"name": "Motilal Oswal",
"type": "portfolio-manager"
}
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({
registration_number: 'INP000000670',
name: 'Motilal Oswal',
type: 'portfolio-manager'
})
};
fetch('https://api.casparser.in/v1/verify/sebi', 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/sebi",
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([
'registration_number' => 'INP000000670',
'name' => 'Motilal Oswal',
'type' => 'portfolio-manager'
]),
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/sebi"
payload := strings.NewReader("{\n \"registration_number\": \"INP000000670\",\n \"name\": \"Motilal Oswal\",\n \"type\": \"portfolio-manager\"\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/sebi")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"registration_number\": \"INP000000670\",\n \"name\": \"Motilal Oswal\",\n \"type\": \"portfolio-manager\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.casparser.in/v1/verify/sebi")
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 \"registration_number\": \"INP000000670\",\n \"name\": \"Motilal Oswal\",\n \"type\": \"portfolio-manager\"\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"verified": true,
"authority": "SEBI",
"category": "portfolio-manager",
"category_label": "Portfolio Manager (PMS)",
"registration_number": "INP000000670",
"name": "MOTILAL OSWAL ASSET MANAGEMENT COMPANY LIMITED",
"registration_status": "ACTIVE",
"valid_from": "2014-09-16",
"valid_till": null,
"is_perpetual": true,
"address": "10th Floor, Motilal Oswal Tower, Prabhadevi, MUMBAI, MAHARASHTRA, 400025",
"email": null,
"telephone": null,
"contact_person": null,
"detected_by": "registration_number"
}Verify a SEBI-registered intermediary
Verify any SEBI-registered intermediary. Provide a registration_number
and the category is auto-detected from its sequence (e.g. INA… →
Investment Adviser, INP… → Portfolio Manager, INZ… → Stock Broker).
Alternatively, provide a name together with a type slug. type can
also override detection, and is required for fund/FPI registration
numbers that do not encode a category.
verified is true only when a current registration is found and its
status is ACTIVE. A missing registration returns HTTP 200 with
verified: false and registration_status: NOT_FOUND.
Credits: 0.25 per successful verification.
curl --request POST \
--url https://api.casparser.in/v1/verify/sebi \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"registration_number": "INP000000670",
"name": "Motilal Oswal",
"type": "portfolio-manager"
}
'import requests
url = "https://api.casparser.in/v1/verify/sebi"
payload = {
"registration_number": "INP000000670",
"name": "Motilal Oswal",
"type": "portfolio-manager"
}
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({
registration_number: 'INP000000670',
name: 'Motilal Oswal',
type: 'portfolio-manager'
})
};
fetch('https://api.casparser.in/v1/verify/sebi', 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/sebi",
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([
'registration_number' => 'INP000000670',
'name' => 'Motilal Oswal',
'type' => 'portfolio-manager'
]),
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/sebi"
payload := strings.NewReader("{\n \"registration_number\": \"INP000000670\",\n \"name\": \"Motilal Oswal\",\n \"type\": \"portfolio-manager\"\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/sebi")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"registration_number\": \"INP000000670\",\n \"name\": \"Motilal Oswal\",\n \"type\": \"portfolio-manager\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.casparser.in/v1/verify/sebi")
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 \"registration_number\": \"INP000000670\",\n \"name\": \"Motilal Oswal\",\n \"type\": \"portfolio-manager\"\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"verified": true,
"authority": "SEBI",
"category": "portfolio-manager",
"category_label": "Portfolio Manager (PMS)",
"registration_number": "INP000000670",
"name": "MOTILAL OSWAL ASSET MANAGEMENT COMPANY LIMITED",
"registration_status": "ACTIVE",
"valid_from": "2014-09-16",
"valid_till": null,
"is_perpetual": true,
"address": "10th Floor, Motilal Oswal Tower, Prabhadevi, MUMBAI, MAHARASHTRA, 400025",
"email": null,
"telephone": null,
"contact_person": null,
"detected_by": "registration_number"
}Authorizations
Your API key for authentication.
Use sandbox-with-json-responses as Sandbox key.
Body
- Option 1
- Option 2
SEBI registration number. When provided, the category is auto-detected from its sequence (INA…→investment-adviser, INH…→research-analyst, INP…→portfolio-manager, INM…→merchant-banker, INR…→registrar-transfer-agent, INZ…→stock-broker). This is the authoritative input — any name sent alongside it is ignored.
"INP000000670"
Entity/trade name to search by. Used only when registration_number is absent, and then type is required.
"Motilal Oswal"
Category slug. Overrides auto-detection; required for a name search and for fund/FPI registration numbers that don't encode a category. Short aliases are also accepted (ria, ra, pms, broker, rta, mf, aif, cra, vcf, fvci, fpi, kra, invit, reit).
investment-adviser, research-analyst, portfolio-manager, stock-broker, merchant-banker, registrar-transfer-agent, mutual-fund, alternative-investment-fund, credit-rating-agency, custodian, debenture-trustee, venture-capital-fund, foreign-venture-capital-investor, foreign-portfolio-investor, kyc-registration-agency, infrastructure-investment-trust, real-estate-investment-trust, esg-rating-provider, vault-manager "portfolio-manager"
Response
Verification completed (found or not found)
Result of a SEBI intermediary verification. Every listed property is always present on a 200 response (fields are null when not applicable); verified is the boolean gate to act on.
success True only when a current registration is found and ACTIVE.
SEBI Detected/selected category slug.
investment-adviser, research-analyst, portfolio-manager, stock-broker, merchant-banker, registrar-transfer-agent, mutual-fund, alternative-investment-fund, credit-rating-agency, custodian, debenture-trustee, venture-capital-fund, foreign-venture-capital-investor, foreign-portfolio-investor, kyc-registration-agency, infrastructure-investment-trust, real-estate-investment-trust, esg-rating-provider, vault-manager "portfolio-manager"
ACTIVE = currently registered; EXPIRED = validity end date passed; NOT_FOUND = no current registration in this category.
ACTIVE, EXPIRED, NOT_FOUND How the category was resolved.
registration_number, type "Portfolio Manager (PMS)"
"INP000000670"
Null when the registration is perpetual.
Was this page helpful?

