Skip to main content
GET
/
v4
/
inbound-email
List Inbound Emails
curl --request GET \
  --url https://api.casparser.in/v4/inbound-email \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "inbound_emails": [
    {
      "inbound_email_id": "ie_a1b2c3d4e5f6",
      "email": "ie_a1b2c3d4e5f6@import.casparser.in",
      "reference": "user_12345",
      "callback_url": "https://api.yourapp.com/webhooks/cas-email",
      "allowed_sources": [
        "cdsl",
        "nsdl"
      ],
      "status": "active",
      "metadata": {
        "plan": "premium"
      },
      "created_at": "2025-02-21T10:30:00Z",
      "updated_at": "2025-02-21T10:30:00Z"
    }
  ],
  "total": 15,
  "limit": 50,
  "offset": 0
}

Authorizations

x-api-key
string
header
required

Your API key for authentication. Use sandbox-with-json-responses as Sandbox key.

Query Parameters

status
enum<string>
default:all

Filter by status

Available options:
active,
paused,
all
limit
integer
default:50

Maximum number of inbound emails to return

Required range: 1 <= x <= 100
offset
integer
default:0

Pagination offset

Required range: x >= 0

Response

List of inbound emails

status
string
Example:

"success"

inbound_emails
object[]
total
integer

Total number of inbound emails (for pagination)

Example:

15

limit
integer
Example:

50

offset
integer
Example:

0