eternalsocial.dev
Kwai

Get Kwai profile information

POST
/api/kwai/profile

Authorization

bearerAuth
AuthorizationBearer <token>

JWT token from /auth/login or API key from /keys

In: header

Request Body

application/json

profileUrl*string
Formaturi
webhookUrl?string

Webhook URL to receive results. If provided, request returns immediately.

Formaturi

Response Body

application/json

application/json

application/json

curl -X POST "http://localhost:3222/api/kwai/profile" \  -H "Content-Type: application/json" \  -d '{    "profileUrl": "https://www.kwai.com/@username"  }'
{
  "success": true,
  "requestId": "string",
  "data": {
    "creator": {
      "@type": "Person",
      "name": "string",
      "alternateName": "string",
      "identifier": "string",
      "description": "string",
      "image": "string",
      "url": "string",
      "sameAs": [
        "string"
      ],
      "interactionStatistic": [
        {
          "@type": "InteractionCounter",
          "interactionType": {
            "@type": "https://schema.org/WatchAction"
          },
          "userInteractionCount": 0
        }
      ],
      "agentInteractionStatistic": {
        "@type": "InteractionCounter",
        "interactionType": {
          "@type": "https://schema.org/WatchAction"
        },
        "userInteractionCount": 0
      }
    },
    "accountStatus": "active"
  },
  "itemCount": 0,
  "creditsCharged": 0
}
{
  "success": true,
  "requestId": "string",
  "status": "processing",
  "message": "string"
}
{
  "success": false,
  "error": "string",
  "requestId": "string"
}