Author Information
Introduction
Get detailed information about a specific author including their basic profile information and contact details.
API
bash
POST /product/v1/authorRequest Parameters
| Field | Type | Required | Description |
|---|---|---|---|
filter | object | Yes | Filter parameters |
filter Optional Values
| Field | Type | Required | Description |
|---|---|---|---|
uid | string | Yes | Author's UID |
Request Example
bash
curl 'https://openapi.test.fastmoss.com/product/v1/author?client_id=XXX×tamp=XXX&access_token=XXX&sign=XXX' \
--header 'Content-Type: application/json' \
{
"filter": {
"uid": "6790997286808093702"
}
}Response Body
data.base
| Field | Type | Description |
|---|---|---|
uid | string | Author's unique identifier |
unique_id | string | Author's unique username |
nickname | string | Author's display name |
avatar | string | Author's profile picture URL |
region | string | Author's region/country |
aweme_count | integer | Number of videos posted |
following_count | integer | Number of accounts following |
category | string | Author's content category |
data.contact
| Field | Type | Description |
|---|---|---|
bio_url | string | Author's bio URL |
uid | string | Author's unique identifier |
zalo | string | Zalo contact info |
twitter_name | string | Twitter username |
youtube_channel_id | string | YouTube channel ID |
line | string | Line contact info |
facebook | string | Facebook profile |
whats_app | string | WhatsApp contact info |
twitter_id | string | Twitter ID |
viber | string | Viber contact info |
ins_id | string | Instagram profile URL |
email | string | Email address |
Response Example
json
{
"code": 0,
"data": {
"base": {
"uid": "6790997286808093702",
"unique_id": "brriiddgett",
"nickname": "Bridget | TikTok Shop & UGC",
"avatar": "https://s.500fd.com/tt_author/cb7b0712f9e068c5c4a293b83dffbe8b~c5_720x720.webp",
"region": "US",
"aweme_count": 891,
"following_count": 1922,
"category": "Beauty/Fashion"
},
"contact": {
"bio_url": "https://stan.store/brriiddgett",
"uid": "6790997286808093702",
"zalo": null,
"twitter_name": null,
"youtube_channel_id": null,
"line": null,
"facebook": null,
"whats_app": null,
"twitter_id": null,
"viber": null,
"ins_id": "https://www.instagram.com/brriiddgett/",
"email": "bridgetadotson@gmail.com"
}
},
"message": "success",
"timestamp": 1743573482,
"request_id": "08b13a39-bec5-825a-b43f-15f978186ad3"
}