> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /dhgate/stores

> Get a single DHgate store (seller) by id or store URL. Returns the store name, location, opening date, description, positive feedback percentage, transaction count, positive review count, overall review score, DHgate service scores (on-time delivery, repurchase rate), the positive/neutral/negative feedback breakdown over the last 2, 6 and 12 months and in total, and the service-detail scores (items as described, communication, delivery time, shipping charges).

**Price:** 1 credit

**⚠️ Common errors:** 412: Store not found on DHgate



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/dhgate/stores
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/dhgate/stores:
    post:
      tags:
        - /dhgate
      summary: /dhgate/stores
      description: >-
        Get a single DHgate store (seller) by id or store URL. Returns the store
        name, location, opening date, description, positive feedback percentage,
        transaction count, positive review count, overall review score, DHgate
        service scores (on-time delivery, repurchase rate), the
        positive/neutral/negative feedback breakdown over the last 2, 6 and 12
        months and in total, and the service-detail scores (items as described,
        communication, delivery time, shipping charges).


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Store not found on DHgate
      operationId: __api_dhgate_stores_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DhgateStoresPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DhgateStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DhgateStoresPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        currency:
          $ref: '#/components/schemas/DhgateCurrency'
          default: USD
        ship_to_country:
          $ref: '#/components/schemas/DhgateShipCountry'
          default: US
        store:
          type: string
          minLength: 1
      type: object
      required:
        - store
    DhgateStore:
      properties:
        '@type':
          type: string
          default: DhgateStore
        id:
          type: string
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        opened_at:
          anyOf:
            - type: string
            - type: 'null'
        positive_feedback_percent:
          anyOf:
            - type: number
            - type: 'null'
        transaction_count:
          anyOf:
            - type: integer
            - type: 'null'
        positive_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_score:
          anyOf:
            - type: integer
            - type: 'null'
        service_scores:
          items:
            $ref: '#/components/schemas/DhgateStoreScore'
          type: array
          default: []
        feedback_last_2_months:
          anyOf:
            - $ref: '#/components/schemas/DhgateStoreFeedbackWindow'
            - type: 'null'
        feedback_last_6_months:
          anyOf:
            - $ref: '#/components/schemas/DhgateStoreFeedbackWindow'
            - type: 'null'
        feedback_last_12_months:
          anyOf:
            - $ref: '#/components/schemas/DhgateStoreFeedbackWindow'
            - type: 'null'
        feedback_total:
          anyOf:
            - $ref: '#/components/schemas/DhgateStoreFeedbackWindow'
            - type: 'null'
        service_detail_scores:
          items:
            $ref: '#/components/schemas/DhgateStoreServiceDetail'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DhgateCurrency:
      type: string
      enum:
        - USD
        - EUR
        - GBP
        - CAD
        - AUD
        - JPY
        - RUB
        - BRL
        - INR
        - MXN
        - KRW
        - TRY
        - SEK
        - NOK
        - DKK
        - PLN
        - CHF
        - NZD
        - SGD
        - HKD
        - THB
        - ILS
        - AED
        - SAR
        - ZAR
        - CZK
    DhgateShipCountry:
      type: string
      enum:
        - US
        - GB
        - CA
        - AU
        - DE
        - FR
        - IT
        - ES
        - NL
        - BE
        - SE
        - 'NO'
        - DK
        - FI
        - IE
        - PT
        - PL
        - CH
        - AT
        - CZ
        - GR
        - RU
        - BR
        - MX
        - CL
        - AR
        - JP
        - KR
        - CN
        - HK
        - TW
        - SG
        - MY
        - TH
        - ID
        - PH
        - VN
        - IN
        - AE
        - SA
        - IL
        - TR
        - ZA
        - NZ
    DhgateStoreScore:
      properties:
        '@type':
          type: string
          default: DhgateStoreScore
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    DhgateStoreFeedbackWindow:
      properties:
        '@type':
          type: string
          default: DhgateStoreFeedbackWindow
        positive:
          anyOf:
            - type: integer
            - type: 'null'
        neutral:
          anyOf:
            - type: integer
            - type: 'null'
        negative:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    DhgateStoreServiceDetail:
      properties:
        '@type':
          type: string
          default: DhgateStoreServiceDetail
        name:
          type: string
        score:
          anyOf:
            - type: number
            - type: 'null'
        max_score:
          anyOf:
            - type: number
            - type: 'null'
        compared_to_industry:
          anyOf:
            - type: string
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````