# DIVIDEND PURIFICATION v.2 Get Dividend Purification Results for stocks. You can query by stock ticker. ## Request body: | Parameter | Value | Description | | --- | --- | --- | | stock | "AAPL" | Stock symbol | ## Response body: | Parameter | Type | Description | | --- | --- | --- | | non-compliant_revenue_ratio | number | Percentage of non-compliant revenue out of total revenue | | symbol | string | Stock symbol | | reported_quarter | string | Reported quarter | | dividend_per_share_for_quarter | number | Dividend per share for the latest quarter | | reported_year | number | Reported year | | dividend_purification_amount_per_share | number | Dividend purification amount per share (DPAPS) | | report_date | date | Report date | Endpoint: POST /v2/musaffa/stocks/dividends/pure Version: 1.0.0 Security: MusaffaAuth ## Header parameters: - `clientid` (string) Example: "{{clientId}}" - `time` (string) Example: "{{time}}" - `token` (string) Example: "{{token}}" ## Request fields (application/json): - `stock` (string) Example: "AAPL" ## Response 200 fields (application/json): - `dividend_per_share_for_quarter` (number) Example: 0.24 - `dividend_purification_amount_per_share` (number) Example: 0.009899171447753909 - `non-compliant_revenue_ratio` (number) Example: 4.124655 - `report_date` (string) Example: "2022-12-31" - `reported_quarter` (string) Example: "FIRST_QUARTER" - `reported_year` (number) Example: 2023 - `symbol` (string) Example: "AAPL"