Skip to content

Author Information

Introduction

Get detailed information about a specific author including their basic profile information and contact details.

API

bash
POST /product/v1/author

Request Parameters

FieldTypeRequiredDescription
filterobjectYesFilter parameters

filter Optional Values

FieldTypeRequiredDescription
uidstringYesAuthor's UID

Request Example

bash
curl 'https://openapi.test.fastmoss.com/product/v1/author?client_id=XXX&timestamp=XXX&access_token=XXX&sign=XXX' \
--header 'Content-Type: application/json' \
{
    "filter": {
       "uid": "6790997286808093702"
    }
}

Response Body

data.base

FieldTypeDescription
uidstringAuthor's unique identifier
unique_idstringAuthor's unique username
nicknamestringAuthor's display name
avatarstringAuthor's profile picture URL
regionstringAuthor's region/country
aweme_countintegerNumber of videos posted
following_countintegerNumber of accounts following
categorystringAuthor's content category

data.contact

FieldTypeDescription
bio_urlstringAuthor's bio URL
uidstringAuthor's unique identifier
zalostringZalo contact info
twitter_namestringTwitter username
youtube_channel_idstringYouTube channel ID
linestringLine contact info
facebookstringFacebook profile
whats_appstringWhatsApp contact info
twitter_idstringTwitter ID
viberstringViber contact info
ins_idstringInstagram profile URL
emailstringEmail 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"
}