> ## 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.

# /reverb/shops

> Get Reverb (reverb.com) shop profile by slug or URL

**Price:** 1 credit

**⚠️ Common errors:** 412: Shop not found



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/reverb/shops
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/reverb/shops:
    post:
      tags:
        - /reverb
      summary: /reverb/shops
      description: |-
        Get Reverb (reverb.com) shop profile by slug or URL

        **Price:** 1 credit

        **⚠️ Common errors:** 412: Shop not found
      operationId: __api_reverb_shops_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReverbShopPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReverbShop'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ReverbShopPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        currency:
          $ref: '#/components/schemas/ReverbCurrency'
          default: USD
        shipping_region:
          $ref: '#/components/schemas/ReverbShippingRegion'
          default: US_CON
        locale:
          $ref: '#/components/schemas/ReverbLocale'
          default: en
        shop:
          type: string
          minLength: 1
      type: object
      required:
        - shop
    ReverbShop:
      properties:
        '@type':
          type: string
          default: ReverbShop
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          type: string
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        shop_type:
          anyOf:
            - type: string
            - type: 'null'
        is_preferred_seller:
          type: boolean
          default: false
        is_quick_shipper:
          type: boolean
          default: false
        is_quick_responder:
          type: boolean
          default: false
        feedback_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_percentage:
          anyOf:
            - type: number
            - type: 'null'
        shipping_policy:
          anyOf:
            - type: string
            - type: 'null'
        payment_policy:
          anyOf:
            - type: string
            - type: 'null'
        payment_methods:
          items:
            type: string
          type: array
          default: []
        direct_checkout:
          type: boolean
          default: false
        website:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        banner:
          anyOf:
            - type: string
            - type: 'null'
        is_on_vacation:
          type: boolean
          default: false
        address:
          anyOf:
            - $ref: '#/components/schemas/ReverbLocation'
            - type: 'null'
        user_id:
          anyOf:
            - type: string
            - type: 'null'
        user_uuid:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - alias
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ReverbCurrency:
      type: string
      enum:
        - USD
        - CAD
        - EUR
        - GBP
        - AUD
        - JPY
        - NZD
    ReverbShippingRegion:
      type: string
      enum:
        - XX
        - US_CON
        - CA
        - GB
        - AU
        - FR
        - DE
        - JP
        - ID
        - US_AK
        - US_HI
        - US_PR
        - US_OTHER
    ReverbLocale:
      type: string
      enum:
        - en
        - fr
        - ja
        - es
        - de
        - it
    ReverbLocation:
      properties:
        '@type':
          type: string
          default: ReverbLocation
        region:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        display_location:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````