Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions justoneapi/generated/resources/douyin_xingtu.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,26 @@ def gw_api_gauthor_get_author_content_hot_keywords_v1(
},
)

def gw_api_gauthor_author_get_business_card_info_v1(
self,
*,
o_author_id: str,
) -> ApiResponse[Any]:
"""
Creator Business Card

Get Douyin Creator Marketplace (Xingtu) creator Business Card data, including business-card profile fields, for creator lookup, vetting, and campaign qualification.

Args:
o_author_id: Author's unique ID.
"""
return self._get(
"/api/douyin-xingtu/gw/api/gauthor/author_get_business_card_info/v1",
{
"oAuthorId": o_author_id,
},
)

def gw_api_aggregator_get_author_commerce_spread_info_v1(
self,
*,
Expand Down
45 changes: 45 additions & 0 deletions openapi/public-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4383,6 +4383,51 @@
"x-order": "15002800"
}
},
"/api/douyin-xingtu/gw/api/gauthor/author_get_business_card_info/v1": {
"get": {
"description": "Get Douyin Creator Marketplace (Xingtu) creator Business Card data, including business-card profile fields, for creator lookup, vetting, and campaign qualification.",
"operationId": "getApiDouyinXingtuGwApiGauthorAuthorGetBusinessCardInfoV1",
"parameters": [
{
"description": "User authentication token.",
"in": "query",
"name": "token",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Author's unique ID.",
"in": "query",
"name": "oAuthorId",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/Result"
}
}
},
"description": "OK"
}
},
"summary": "Creator Business Card",
"tags": [
"Douyin Creator Marketplace (Xingtu)"
],
"x-api-version": "v1",
"x-highlights": [],
"x-order": "15003075"
}
},
"/api/douyin-xingtu/gw/api/gauthor/get_author_content_hot_keywords/v1": {
"get": {
"description": "Get Douyin Creator Marketplace (Xingtu) kOL Content Keyword Analysis data, including core metrics, trend signals, and performance indicators, for content theme analysis and creator positioning research.",
Expand Down
45 changes: 45 additions & 0 deletions openapi/public-api.normalized.json
Original file line number Diff line number Diff line change
Expand Up @@ -4467,6 +4467,51 @@
"x-sdk-resource": "douyin_xingtu"
}
},
"/api/douyin-xingtu/gw/api/gauthor/author_get_business_card_info/v1": {
"get": {
"description": "Get Douyin Creator Marketplace (Xingtu) creator Business Card data, including business-card profile fields, for creator lookup, vetting, and campaign qualification.",
"operationId": "getApiDouyinXingtuGwApiGauthorAuthorGetBusinessCardInfoV1",
"parameters": [
{
"description": "Author's unique ID.",
"in": "query",
"name": "oAuthorId",
"required": true,
"schema": {
"type": "string"
},
"x-sdk-python-name": "o_author_id"
}
],
"responses": {
"200": {
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/Result"
}
}
},
"description": "OK"
}
},
"security": [
{
"tokenAuth": []
}
],
"summary": "Creator Business Card",
"tags": [
"Douyin Creator Marketplace (Xingtu)"
],
"x-api-version": "v1",
"x-highlights": [],
"x-order": "15003075",
"x-sdk-class-name": "DouyinXingtuResource",
"x-sdk-method-name": "gw_api_gauthor_author_get_business_card_info_v1",
"x-sdk-resource": "douyin_xingtu"
}
},
"/api/douyin-xingtu/gw/api/gauthor/get_author_content_hot_keywords/v1": {
"get": {
"description": "Get Douyin Creator Marketplace (Xingtu) kOL Content Keyword Analysis data, including core metrics, trend signals, and performance indicators, for content theme analysis and creator positioning research.",
Expand Down