The field summary is for scanning; the full JSON Schema is the stable output contract.
Full 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": {
"creator_id": {
"type": "string"
},
"item": {
"anyOf": [
{
"type": "object",
"properties": {
"snapshot_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"estimated_cpm": {
"type": "object",
"properties": {
"image": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"video": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
}
},
"required": [
"image",
"video"
],
"additionalProperties": false
},
"estimated_read_cost": {
"type": "object",
"properties": {
"image": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"video": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
}
},
"required": [
"image",
"video"
],
"additionalProperties": false
},
"estimated_engagement_cost": {
"type": "object",
"properties": {
"image": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"video": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
}
},
"required": [
"image",
"video"
],
"additionalProperties": false
},
"estimated_cpuv": {
"type": "object",
"properties": {
"image": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"video": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
}
},
"required": [
"image",
"video"
],
"additionalProperties": false
},
"content_mix": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"percent": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
}
},
"required": [
"label",
"percent"
],
"additionalProperties": false
}
},
"fans_30d_growth_rate": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"trade_names": {
"type": "array",
"items": {
"type": "string"
}
},
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"active_days_last_7": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"median_reads": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"median_engagements": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"note_count": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
}
},
"required": [
"snapshot_date",
"estimated_cpm",
"estimated_read_cost",
"estimated_engagement_cost",
"estimated_cpuv",
"content_mix",
"fans_30d_growth_rate",
"trade_names",
"active",
"active_days_last_7",
"median_reads",
"median_engagements",
"note_count"
],
"additionalProperties": false
},
{
"type": "null"
}
]
}
},
"required": [
"creator_id",
"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": "xiaohongshu.pgy.bloggers.datasummary"
},
"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
}