Skip to content
Eden Engine

Reddit Post Details Lookup (by Post ID)

omnial/reddit-app-fetch-post-details

Given a Reddit post ID, returns that post's full detail record: title, author, subreddit, score, upvote ratio, comment count, flair, awards, and moderation/removal status. A syntactically valid but non-existent post ID returns an empty (null) result rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
reddit
Provider price
$0.0020475 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "post_id"
  ],
  "properties": {
    "post_id": {
      "type": "string",
      "pattern": "^t3_[a-z0-9]{1,17}$",
      "examples": [
        "t3_1ojnh50"
      ],
      "maxLength": 20,
      "minLength": 4,
      "description": "Post ID"
    },
    "language": {
      "type": "string",
      "default": "en-US",
      "pattern": "^[A-Za-z]{2,3}(?:-[A-Za-z0-9]{2,8})*$",
      "maxLength": 16,
      "minLength": 2,
      "description": "Preferred response language as an IETF language tag; default: en-US"
    },
    "comment_id": {
      "type": "string",
      "pattern": "^(?:|t1_[a-z0-9]{1,17})$",
      "maxLength": 20,
      "description": "Comment ID (when include_comment_id is True)"
    },
    "need_format": {
      "type": "boolean",
      "default": false,
      "description": "Whether to clean and format the data"
    },
    "include_comment_id": {
      "type": "boolean",
      "default": false,
      "description": "Include specific comment ID"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "postsInfoByIds": {
      "type": "array",
      "items": {
        "type": [
          "object",
          "null"
        ],
        "properties": {
          "id": {
            "type": "string",
            "description": "The post's own id, echoes the input post_id."
          },
          "flair": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "text": {
                "type": "string"
              },
              "type": {
                "type": "string"
              },
              "template": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string"
                  },
                  "isEditable": {
                    "type": "boolean"
                  },
                  "backgroundColor": {
                    "type": "string"
                  }
                },
                "additionalProperties": true
              },
              "textColor": {
                "type": "string"
              }
            },
            "description": "Null when the post has no flair.",
            "additionalProperties": true
          },
          "score": {
            "type": "number"
          },
          "domain": {
            "type": "string",
            "description": "e.g. 'v.redd.it', 'self.<subreddit>'."
          },
          "isNsfw": {
            "type": "boolean"
          },
          "content": {
            "type": [
              "string",
              "null"
            ],
            "description": "Self-post body text. Null on the one real example observed, which was a link post (isSelfPost: false), not a self post."
          },
          "isSaved": {
            "type": "boolean"
          },
          "editedAt": {
            "type": [
              "string",
              "null"
            ]
          },
          "isHidden": {
            "type": "boolean"
          },
          "isLocked": {
            "type": "boolean"
          },
          "postHint": {
            "type": [
              "string",
              "null"
            ],
            "description": "e.g. 'video'; null when not set."
          },
          "awardings": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "award": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string",
                      "description": "The award's own public display name."
                    },
                    "tags": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  },
                  "description": "`static_icon_16/24/32/48/64.url` are stripped; ids/names/tags pass through.",
                  "additionalProperties": true
                },
                "total": {
                  "type": "number"
                }
              },
              "additionalProperties": true
            },
            "description": "Empty array when the post has no awards."
          },
          "createdAt": {
            "type": "string",
            "description": "ISO 8601 timestamp."
          },
          "isSpoiler": {
            "type": "boolean"
          },
          "permalink": {
            "type": "string",
            "description": "Path-only, relative to reddit.com."
          },
          "postStats": {
            "type": "object",
            "properties": {
              "shareAllTotal": {
                "type": "number"
              },
              "viewCountTotal": {
                "type": [
                  "number",
                  "null"
                ]
              }
            },
            "additionalProperties": true
          },
          "postTitle": {
            "type": "string"
          },
          "subreddit": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "name": {
                "type": "string",
                "description": "The subreddit's short name, e.g. 'TikTokCringe'."
              },
              "type": {
                "type": "string",
                "description": "e.g. 'PUBLIC'."
              },
              "title": {
                "type": "string"
              },
              "isNsfw": {
                "type": "boolean"
              },
              "styles": {
                "type": "object",
                "properties": {
                  "primaryColor": {
                    "type": "string"
                  },
                  "backgroundColor": {
                    "type": "string"
                  },
                  "legacyPrimaryColor": {
                    "type": "string"
                  }
                },
                "description": "`icon`/`bannerBackgroundImage` are stripped; colors pass through.",
                "additionalProperties": true
              },
              "isTitleSafe": {
                "type": "boolean"
              },
              "isSubscribed": {
                "type": "boolean"
              },
              "isUserBanned": {
                "type": "boolean"
              },
              "prefixedName": {
                "type": "string",
                "description": "e.g. 'r/TikTokCringe'."
              },
              "isQuarantined": {
                "type": "boolean"
              },
              "tippingStatus": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "communityStatus": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "whitelistStatus": {
                "type": "string",
                "description": "e.g. 'SOME_ADS'."
              },
              "subscribersCount": {
                "type": "number"
              },
              "isThumbnailsEnabled": {
                "type": "boolean"
              }
            },
            "additionalProperties": true
          },
          "viewCount": {
            "type": [
              "number",
              "null"
            ]
          },
          "voteState": {
            "type": "string",
            "description": "e.g. 'NONE'."
          },
          "authorInfo": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "name": {
                "type": "string",
                "description": "The author's Reddit username/handle."
              },
              "newIcon": {
                "type": "object",
                "properties": {
                  "dimensions": {
                    "type": "object",
                    "properties": {
                      "width": {
                        "type": "number"
                      },
                      "height": {
                        "type": "number"
                      }
                    },
                    "additionalProperties": true
                  }
                },
                "description": "`url` is stripped; only dimensions pass through.",
                "additionalProperties": true
              },
              "profile": {
                "type": "object",
                "properties": {
                  "isNsfw": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              "iconSmall": {
                "type": "object",
                "properties": {
                  "dimensions": {
                    "type": "object",
                    "properties": {
                      "width": {
                        "type": "number"
                      },
                      "height": {
                        "type": "number"
                      }
                    },
                    "additionalProperties": true
                  }
                },
                "description": "`url` is stripped; only dimensions pass through.",
                "additionalProperties": true
              },
              "isBlocked": {
                "type": "boolean"
              },
              "accountType": {
                "type": "string",
                "description": "e.g. 'USER'."
              },
              "isCakeDayNow": {
                "type": "boolean"
              },
              "snoovatarIcon": {
                "type": "object",
                "properties": {
                  "dimensions": {
                    "type": "object",
                    "properties": {
                      "width": {
                        "type": "number"
                      },
                      "height": {
                        "type": "number"
                      }
                    },
                    "additionalProperties": true
                  }
                },
                "description": "`url` is stripped; only dimensions pass through.",
                "additionalProperties": true
              }
            },
            "description": "The post's author. See verification.notes for why `name` is shipped despite being contact-class.",
            "additionalProperties": true
          },
          "isArchived": {
            "type": "boolean"
          },
          "isFollowed": {
            "type": "boolean"
          },
          "isGildable": {
            "type": "boolean"
          },
          "isSelfPost": {
            "type": "boolean"
          },
          "isStickied": {
            "type": "boolean"
          },
          "upvoteRatio": {
            "type": "number"
          },
          "commentCount": {
            "type": "number"
          },
          "isTranslated": {
            "type": "boolean"
          },
          "languageCode": {
            "type": "string",
            "description": "e.g. 'en'."
          },
          "outboundLink": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "expiresAt": {
                "type": "string"
              }
            },
            "description": "Present on link posts (`url` is stripped). `expiresAt` is a link-preview cache-expiry timestamp, not a personal date.",
            "additionalProperties": true
          },
          "isContestMode": {
            "type": "boolean"
          },
          "isScoreHidden": {
            "type": "boolean"
          },
          "isPollIncluded": {
            "type": "boolean"
          },
          "isReactAllowed": {
            "type": "boolean"
          },
          "isTranslatable": {
            "type": "boolean"
          },
          "distinguishedAs": {
            "type": [
              "string",
              "null"
            ],
            "description": "Set when a mod/admin posted with distinguished flair; null otherwise."
          },
          "isAuthorBlocked": {
            "type": "boolean"
          },
          "isCrosspostable": {
            "type": "boolean"
          },
          "crowdControlLevel": {
            "type": "string",
            "description": "e.g. 'OFF'."
          },
          "removedByCategory": {
            "type": [
              "string",
              "null"
            ],
            "description": "e.g. 'MODERATOR' when removed; null when not removed."
          },
          "isThumbnailEnabled": {
            "type": "boolean"
          },
          "translatedLanguage": {
            "type": [
              "string",
              "null"
            ]
          },
          "suggestedCommentSort": {
            "type": [
              "string",
              "null"
            ]
          },
          "isCommercialCommunication": {
            "type": "boolean"
          },
          "isCrowdControlFilterEnabled": {
            "type": "boolean"
          }
        },
        "description": "Null when the post_id does not exist.",
        "additionalProperties": true
      },
      "description": "One entry, for the requested post_id."
    }
  },
  "description": "The post-lookup result, as returned at routing.responseResultPath ($.output) after shaping. `postsInfoByIds` is always a single-entry array (one entry per requested post_id); that entry is null when the post_id does not exist (see examples/nonexistent-post-error.json), not an error.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0020475
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026