RedCrawler API
Messaging & Inbox & Notification

Mark Inbox All Seen

Mark all inbox notifications as seen up to the given timestamp — clears the red-dot badge on the user's account. If `last_sent_at` is omitted, the server uses

POST /api/v2/inbox/mark-seen

Mark all inbox notifications as seen up to the given timestamp — clears the red-dot badge on the user's account.

If last_sent_at is omitted, the server uses the current UTC timestamp, which marks the entire inbox as seen.

Query parameters

NameTypeRequiredDescription
proxystringNoProxy ip:port:user:pass. Auto-resolves from your stored Token Vault entry.
bearerstringNoReddit bearer token. Auto-resolves from your stored Token Vault entry.

Body parameters

NameTypeRequiredDescription
last_sent_atstringNoTimestamp of the most recent notification to mark as read (copy the sent_at value from any inbox item). Leave empty to mark your entire inbox as read.

Authentication

HeaderValue
X-RapidAPI-KeyYour RapidAPI key
X-RapidAPI-Hostred-crawler1.p.rapidapi.com

Example request

cURL

curl -X POST "https://red-crawler1.p.rapidapi.com/api/v2/inbox/mark-seen?proxy=<proxy>&bearer=<bearer>" \
  -H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
  -H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com" \
  -H "Content-Type: application/json" \
  --data '{"last_sent_at": "<last_sent_at>"}'

JavaScript

const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v2/inbox/mark-seen?proxy=<proxy>&bearer=<bearer>", {
  method: "POST",
  headers: {
      "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
    },
    body: JSON.stringify({
  "last_sent_at": "<last_sent_at>"
})
});
const data = await res.json();
console.log(data);

Python

import requests

url = "https://red-crawler1.p.rapidapi.com/api/v2/inbox/mark-seen?proxy=<proxy>&bearer=<bearer>"
headers = {
    "X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
    "X-RapidAPI-Host": "red-crawler1.p.rapidapi.com",
    "Content-Type": "application/json"
}
payload = {
  "last_sent_at": "<last_sent_at>"
}
resp = requests.post(url, headers=headers, json=payload)
print(resp.json())

Example response

HTTP 200 — captured from a live call to the gateway.

{
  "success": true,
  "data": {
    "ok": true,
    "last_sent_at": "2026-04-29T11:52:25.926147"
  },
  "error": null,
  "meta": {
    "vault_expires_at": "2026-04-30T07:47:21.906002+00:00",
    "vault_remaining": "19h 54m"
  },
  "timestamp": "2026-04-29T11:52:27.030021+00:00"
}

On this page