Reddit

Reddit

Post

per_call

Resolves a Reddit post URL or ID into title, selftext or link target, author, subreddit, flair, upvote score and ratio, comment count, award count and timestamps. Use it for source verification, virality tracking and content ingestion.

Endpoint

GET /v1/reddit/post

Price

$1.50

per 1,000 calls · $0.0015 per call

Cost per call

1 credit

Failed calls never charged

Parameters

target
required
string

The Reddit handle, URL or identifier to resolve.

limit
optional
integer

Items to return for list responses. Default 10, max 100.

cursor
optional
string

Pagination cursor returned by a previous response.

Example request

Sandbox calls return deterministic sample data in the live payload shape.

curl
curl "https://api.fastfetchz.com/v1/reddit/post?target=nasa" \
  -H "X-API-Key: $FASTFETCHZ_KEY"

Example response

200 application/json
{
  "success": true,
  "service": {
    "platform": "Reddit",
    "name": "Post",
    "slug": "post"
  },
  "credits_charged": 1,
  "credits_remaining": 99,
  "latency_ms": 214,
  "data": {
    "items": [
      {
        "id": "7000148626",
        "shortcode": "S36OI",
        "url": "https://example.com/reddit/nasa/148626",
        "caption": "Sandbox post item #1 for @nasa.",
        "media_type": "image",
        "like_count": 28826,
        "comment_count": 131,
        "view_count": 149626,
        "duration_sec": 48,
        "taken_at": "2026-08-24T10:34:40.193Z"
      },
      {
        "id": "7000354529",
        "shortcode": "S7LK1",
        "url": "https://example.com/reddit/nasa/354529",
        "caption": "Sandbox post item #2 for @nasa.",
        "media_type": "image",
        "like_count": 34729,
        "comment_count": 834,
        "view_count": 355529,
        "duration_sec": 31,
        "taken_at": "2026-08-23T10:34:40.193Z"
      }
    ],
    "paging": {
      "has_more": true,
      "next_cursor": "cursor_40643"
    }
  }
}

Error codes

401invalid_api_keyMissing or unrecognized X-API-Key header. No credits are charged.
402insufficient_creditsYour balance is below the cost of the call. Top up to continue.
403account_suspended / key_revokedThe account is suspended or the key was revoked.
429rate_limitedThe key exceeded its monthly cap or the burst limit. Retry later.
500upstream_errorUnexpected failure while fulfilling the request. Not charged.