v13

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-022830130.4 KB
CAS Generator

CAS Generator (Email Mailback)

Generate a mutual fund CAS statement via email mailback. The CAS PDF will be sent to the investor's email.

KFintech and CAMS have a mutual partnership for data sharing and consolidation, so this endpoint retrieves mutual fund data from both RTAs, covering all mutual funds in India.

This is an async operation - the investor receives the CAS via email within a few minutes.

By default, a Detailed CAS is generated, which includes the complete transaction history. The parsing layer supports all statement types (Detailed, Summary, etc.), but generation always requests the Detailed variant for maximum data coverage.

post/v4/generate

Request body

emailstring required

Email address to receive the CAS document

pan_nostring

PAN number (optional)

from_datestring required

Start date (YYYY-MM-DD)

to_datestring required

End date (YYYY-MM-DD)

passwordstring required

Password for the PDF

Example request

{
  "email": "user@example.com",
  "pan_no": "ABCDE1234F",
  "from_date": "2023-01-01",
  "to_date": "2023-12-31",
  "password": "Abcdefghi12$"
}

Response

Request submitted successfully

statusstring
msgstring

Example response

{
  "status": "success",
  "msg": "CAS request submitted. Check email shortly."
}