v21

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-042830148.8 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

from_datestring required

Start date (YYYY-MM-DD)

pan_nostring

PAN number (optional)

passwordstring required

Password for the PDF

to_datestring required

End date (YYYY-MM-DD)

Example request

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

Response

Request submitted successfully

msgstring
statusstring

Example response

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