Skip to content

Communications Module

Customer engagement and feedback management for Wildberries marketplace.


Overview

PropertyValue
Module Namecommunications
SDK Namespacesdk.communications.*
Base URLshttps://feedbacks-api.wildberries.ru, https://buyer-chat-api.wildberries.ru, https://returns-api.wildberries.ru, https://api.wildberries.ru
Source Swaggerwildberries_api_doc/09-communications/
Methods21
AuthenticationAPI Key (Header)

Features

  • Questions & Answers - Manage customer questions on products
  • Feedbacks/Reviews - Handle customer reviews and ratings
  • Pinned Reviews (NEW in Feb 2026) - Pin important reviews to product cards
  • Claims/Returns - Process return claims
  • Customer Chat - Direct messaging with customers

Quick Start

typescript
import { WildberriesSDK } from 'daytona-wildberries-typescript-sdk';

const sdk = new WildberriesSDK({ apiKey: process.env.WB_API_KEY! });

// Check for unread reviews and questions
const unread = await sdk.communications.newFeedbacksQuestions();

// Get list of reviews
const reviews = await sdk.communications.feedbacks({ isAnswered: false });

// Reply to a review
await sdk.communications.createFeedbacksAnswer({ id: 'review-id', text: 'Thank you!' });

// Get customer chats
const chats = await sdk.communications.getSellerChats();

// NEW: Pin important reviews
const pinnedCount = await sdk.communications.getPinnedFeedbacksCount();
console.log('Pinned reviews:', pinnedCount.data?.countPinned);

await sdk.communications.pinFeedback([
  {
    pinMethod: 'subscription',
    pinOn: 'nm',
    feedbackId: 'positive-review-id'
  }
]);

Methods Reference

Questions (6 methods)

MethodHTTPEndpointDescription
newFeedbacksQuestions()GET/api/v1/new-feedbacks-questionsCheck for unread reviews and questions
getQuestionsCountUnanswered()GET/api/v1/questions/count-unansweredGet unanswered questions count
getQuestionsCount()GET/api/v1/questions/countGet question count for period
questions()GET/api/v1/questionsGet questions with filters and pagination
updateQuestion()PATCH/api/v1/questionsMark viewed, reject, answer, or edit answer
question()GET/api/v1/questionGet single question by ID

Reviews (6 methods)

MethodHTTPEndpointDescription
getFeedbacksCountUnanswered()GET/api/v1/feedbacks/count-unansweredGet unprocessed reviews count and avg rating
getFeedbacksCount()GET/api/v1/feedbacks/countGet review count for period
feedbacks()GET/api/v1/feedbacksGet reviews with filters and pagination
createFeedbacksAnswer()POST/api/v1/feedbacks/answerReply to customer review
updateFeedbacksAnswer()PATCH/api/v1/feedbacks/answerEdit review response (once per 60 days)
feedback()GET/api/v1/feedbackGet single review by ID

Reviews - Extended (2 methods)

MethodHTTPEndpointDescription
createOrderReturn()POST/api/v1/feedbacks/order/returnRequest product return by review ID
getFeedbacksArchive()GET/api/v1/feedbacks/archiveGet archived reviews

Pinned Reviews (5 methods) - NEW in Feb 2026

Pin important reviews to product cards to highlight positive customer feedback.

MethodHTTPEndpointDescription
getPinnedFeedbacksCount()GET/api/feedbacks/v1/pins/countGet count of pinned reviews
getPinnedFeedbacksLimits()GET/api/feedbacks/v1/pins/limitsGet pinning limits per seller
getPinnedFeedbacks()GET/api/feedbacks/v1/pinsList pinned reviews with details
pinFeedback()POST/api/feedbacks/v1/pinsPin reviews to products
unpinFeedback()DELETE/api/feedbacks/v1/pinsUnpin reviews from products

Buyer Chat (4 methods)

MethodHTTPEndpointDescription
getSellerChats()GET/api/v1/seller/chatsGet all seller chats
getSellerEvents()GET/api/v1/seller/eventsGet chat events with pagination
createSellerMessage()POST/api/v1/seller/messageSend message to customer
getSellerDownload()GET/api/v1/seller/download/{id}Get file/image from message

Returns (2 methods)

MethodHTTPEndpointDescription
claims()GET/api/v1/claimsGet return requests (last 14 days)
updateClaim()PATCH/api/v1/claimRespond to return request

Deprecated Methods

The following methods have been removed from the Wildberries API:

MethodStatusNotes
supplierValuations()RemovedComplaint reasons endpoint removed from API
createFeedbacksAction()RemovedFeedback actions endpoint removed from API
templates()RemovedTemplates tag removed from API
createTemplate()RemovedTemplates tag removed from API
updateTemplate()RemovedTemplates tag removed from API
deleteTemplate()RemovedTemplates tag removed from API

Rate Limits

TierOperationsLimitInterval
T1 Questions & ReviewsQuestions, reviews, feedback actions3 req/sec333ms
T2 ChatSeller chats, events, messages, downloads10 req/10s1s
T3 ReturnsClaims list and response20 req/min3s
T4 Pinned ReviewsAll pinned review operations3 req/min20s

See Also

Made with ❤️ for the Wildberries developer community