Reddit community profile
Read public community metadata and activity snapshots by subreddit name.
/v1/reddit/subreddits/profileChinese name: Reddit 社区资料 · Reddit 社区 · 资料 按名称读取公开社区资料与活动快照。reddit.subreddits.profile@v1
Price per call
¥0.02/ call
Complete and confirmed empty results are charged; failures are not.
Checking live statusTry it
This API is coming soon
We are running launch checks. Once live, you can try it right here at the price shown above; nothing is charged before then. You can already read the parameters and response example.
Available now on the same platform
- Reddit post detail
- Reddit batch post details
- Reddit community posts
- Reddit community highlights
- Reddit community post flairs
- Reddit post search
- Reddit post comments
- Reddit public user profile
- Reddit trending searches
- Reddit user posts
- Reddit search suggestions
- Reddit user comments
- Reddit user active communities
Sign in and run one real call. The result and charge appear right here.
Security check
Loading the security check…
Checking live execution status…
Execution result
// Result
Request parameters
subredditstringrequiredpattern: "^(?:r\\/)?[a-z0-9_]{2,21}$"
Example:
"OpenAI"
Request JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"subreddit": {
"type": "string",
"pattern": "^(?:r\\/)?[a-z0-9_]{2,21}$"
}
},
"required": [
"subreddit"
],
"additionalProperties": false
}Code samples
Install the SDK with npm i @dataxapi/sdk or pip install dataxapi, and put your API key in the DATAXAPI_API_KEY environment variable.
curl -X POST https://api.dataxapi.com/v1/reddit/subreddits/profile \
-H "Authorization: Bearer $DATAXAPI_API_KEY" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{"subreddit":"OpenAI"}'import { ExactApiClient } from "@dataxapi/sdk";
const client = new ExactApiClient({
baseUrl: "https://api.dataxapi.com",
apiKey: process.env.DATAXAPI_API_KEY,
});
const result = await client.call("reddit_subreddits_profile_v1", {
"subreddit": "OpenAI"
});
console.log(result.data);import os
from dataxapi import ExactApiClient
client = ExactApiClient("https://api.dataxapi.com", os.environ["DATAXAPI_API_KEY"])
result = client.call("reddit_subreddits_profile_v1", {
"subreddit": "OpenAI",
})
print(result["data"])[mcp_servers.dataxapi]
url = "https://api.dataxapi.com/mcp"
bearer_token_env_var = "DATAXAPI_API_KEY"Response example
{
"code": 200,
"request_id": "req_example_reddit_public_expansion",
"message": "success",
"data": {
"item": {
"id": "t5_openai",
"name": "OpenAI",
"prefixed_name": "r/OpenAI",
"title": "OpenAI",
"description": "Public community description",
"subscribers": 9000000,
"weekly_visitors": 150000,
"weekly_contributions": 20000,
"created_at": "2008-12-14T00:00:00Z",
"type": "PUBLIC",
"allowed_post_types": [
"LINK",
"TEXT"
],
"is_nsfw": false,
"is_quarantined": false,
"icon_url": "https://styles.redditmedia.com/icon.png",
"path": "/r/OpenAI/",
"reddit_url": "https://www.reddit.com/r/OpenAI/"
}
},
"page": {
"next_cursor": null
},
"warnings": [],
"meta": {
"listing_id": "reddit.subreddits.profile",
"version": "v1",
"catalog_release_id": "catalog-production-2026-09-19.b069be57",
"price_book_version": "pricebook-production-2026-09-19.4487e352",
"result_status": "complete",
"charged_amount": "0.02",
"balance_after": "49.70",
"currency": "CNY"
}
}Response fields
codenumber- const: 200
request_idstringmessagestring- const: "success"
dataobjectpageobjectwarningsarraymetaobject
Response JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"code": {
"type": "number",
"const": 200
},
"request_id": {
"type": "string"
},
"message": {
"type": "string",
"const": "success"
},
"data": {
"type": "object",
"properties": {
"item": {
"anyOf": [
{
"type": "object",
"properties": {
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"name": {
"type": "string"
},
"prefixed_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"subscribers": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"weekly_visitors": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"weekly_contributions": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"created_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"allowed_post_types": {
"type": "array",
"items": {
"type": "string"
}
},
"is_nsfw": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"is_quarantined": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"icon_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"reddit_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"id",
"name",
"prefixed_name",
"title",
"description",
"subscribers",
"weekly_visitors",
"weekly_contributions",
"created_at",
"type",
"allowed_post_types",
"is_nsfw",
"is_quarantined",
"icon_url",
"path",
"reddit_url"
],
"additionalProperties": false
},
{
"type": "null"
}
]
}
},
"required": [
"item"
],
"additionalProperties": false
},
"page": {
"type": "object",
"properties": {
"next_cursor": {
"type": "null"
}
},
"required": [
"next_cursor"
],
"additionalProperties": false
},
"warnings": {
"type": "array",
"items": {
"type": "string"
}
},
"meta": {
"type": "object",
"properties": {
"listing_id": {
"type": "string",
"const": "reddit.subreddits.profile"
},
"version": {
"type": "string",
"const": "v1"
},
"catalog_release_id": {
"type": "string",
"minLength": 1
},
"price_book_version": {
"type": "string",
"minLength": 1
},
"result_status": {
"type": "string",
"enum": [
"complete",
"empty"
]
},
"charged_amount": {
"type": "string"
},
"balance_after": {
"type": "string"
},
"currency": {
"type": "string",
"const": "CNY"
}
},
"required": [
"listing_id",
"version",
"catalog_release_id",
"price_book_version",
"result_status",
"charged_amount",
"balance_after",
"currency"
],
"additionalProperties": false
}
},
"required": [
"code",
"request_id",
"message",
"data",
"page",
"warnings",
"meta"
],
"additionalProperties": false
}Usage notes
Good for
- Use it to understand a known community's subject and current public context.
Not for
- Do not use it to infer member profiles or treat counts as demand.
Known limitations
- Subscriber and weekly activity fields are point-in-time snapshots.
- Unknown weekly metrics are returned as null.
- Only allowlisted public profile fields are returned.
Billing
¥0.02 per call. Complete and confirmed empty results are charged; failures are not.
See all pricing →