TikTok for Developers Research Users API

User information for research

Operations 1

POST /v2/research/user/info/ Query Research User Info #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/tiktok-for-developers-research-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tiktok-for-developers-research-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TikTok Content Posting OAuth Research Users API
  description: The TikTok Content Posting API allows third-party platforms to publish videos directly to a user's TikTok account. Supports direct post and file-upload flows, including video initiation, chunk upload, and publish status polling.
  version: v2
  contact:
    name: TikTok for Developers
    url: https://developers.tiktok.com/
  termsOfService: https://developers.tiktok.com/doc/tiktok-api-terms-of-service
servers:
- url: https://open.tiktokapis.com
  description: TikTok Open API Production
security:
- BearerAuth: []
tags:
- name: Research Users
  description: User information for research
paths:
  /v2/research/user/info/:
    post:
      operationId: queryResearchUserInfo
      summary: Query Research User Info
      description: Retrieves public TikTok account information by TikTok handle. Returns fields such as display_name, bio_description, avatar_url, is_verified, follower_count, following_count, likes_count, and video_count.
      tags:
      - Research Users
      parameters:
      - name: fields
        in: query
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserInfoRequest'
      responses:
        '200':
          description: User info returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResearchUserInfoResponse'
        '401':
          description: Unauthorized
components:
  schemas:
    UserInfoRequest:
      type: object
      required:
      - username
      properties:
        username:
          type: string
          description: TikTok handle (without @)
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        log_id:
          type: string
    ResearchUserInfoResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            display_name:
              type: string
            bio_description:
              type: string
            avatar_url:
              type: string
            is_verified:
              type: boolean
            follower_count:
              type: integer
            following_count:
              type: integer
            likes_count:
              type: integer
            video_count:
              type: integer
        error:
          $ref: '#/components/schemas/Error'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 Bearer token