LoudCrowd Storefront Product Details API

The StorefrontProductDetails API from LoudCrowd — 1 operation(s) for storefrontproductdetails.

Operations 1

GET /StorefrontProductDetails Retrieve Product Details

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/loudcrowd-storefrontproductdetails-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 email required.

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

OpenAPI Specification

loudcrowd-storefrontproductdetails-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Loudcrowd Storefront Product Details API
  version: 0.0.0
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  description: 'Operations tagged StorefrontProductDetails across 2 of this provider''s published API definitions: loudcrowd-creator-storefronts-openapi.yml, loudcrowd-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://store-api.loudcrowd.com/api
  description: The base url for the LoudCrowd Creator Storefronts API.
  variables: {}
- url: https://api.loudcrowd.com
  description: LoudCrowd Attribution Events API
security:
- bearerAuth: []
tags:
- name: StorefrontProductDetails
paths:
  /StorefrontProductDetails:
    get:
      summary: Retrieve Product Details
      description: Detailed data to support social-enhanced display of an ambassador's picked product.
      parameters:
      - in: query
        name: lcAmbassadorId
        description: The unique identifier of the ambassador generated by the LoudCrowd platform.
        required: true
        schema:
          type: string
          maxLength: 32
          pattern: ^[a-zA-Z0-9+/]*={0,2}$
      - in: query
        name: shopId
        description: The unique identifier of the shop that the ambassador is associated with. This field is not required if the `shopifyId` field is populated.
        required: false
        schema:
          type: string
      - in: query
        name: shopifyId
        description: The unique identifier of the shopify shop that the ambassador is associated with. This field is not required if the `shopId` field is populated.
        required: false
        schema:
          type: string
      - in: query
        name: productVariantId
        description: The unique identifier of the product variant item in the LoudCrowd platform.
        required: true
        schema:
          type: string
          maxLength: 32
          pattern: ^[a-zA-Z0-9+/]*={0,2}$
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  productDetails:
                    type: object
                    properties:
                      product:
                        type: object
                        properties:
                          id:
                            type: string
                            description: The unique identifier of the product in LoudCrowd.
                            example: XYZDJSK1ABC
                          active:
                            type: boolean
                            description: Whether the product is active.
                            example: true
                          brand:
                            type:
                            - string
                            - 'null'
                            description: The brand of the product.
                            example: Nike
                          handle:
                            type:
                            - string
                            - 'null'
                            description: The handle of the product.
                            example: nike-air-force-1
                          imageSrc:
                            type:
                            - string
                            - 'null'
                            description: The URL of the product image.
                            example: https://media.loudcrowd.com/17841409007688784.jpg
                          options:
                            description: The options available for the product.
                            type: array
                            items:
                              type: object
                              properties:
                                name:
                                  description: The name of the option.
                                  type: string
                                values:
                                  description: The possible values of the option.
                                  type: array
                                  items:
                                    type: string
                          platformProductId:
                            type: string
                            description: The unique identifier of the product in the platform.
                            example: XYZDJSK1ABC
                          priceCurrencyCode:
                            $ref: '#/components/schemas/priceCurrencyCode'
                          prices:
                            $ref: '#/components/schemas/productPrices'
                          productUrl:
                            description: The URL of the product details.
                            type:
                            - string
                            - 'null'
                          title:
                            description: The title of the product.
                            type:
                            - string
                            - 'null'
                      productVariant:
                        type: object
                        properties:
                          id:
                            description: The unique identifier of the product variant in the LoudCrowd.
                            type: string
                            example: XYZDJSK1ABC
                          productUrl:
                            description: The URL of the variant the ambassador has picked.
                            type:
                            - string
                            - 'null'
                          selectedOptions:
                            description: The selected options of the product variant.
                            type: array
                            items:
                              $ref: '#/components/schemas/selectedOptionItem'
                      customMedia:
                        description: If the ambassador chose a custom media for the feed item when they picked it, this object will be populated with that media.
                        type:
                        - object
                        - 'null'
                        properties:
                          id:
                            description: The unique identifier of the custom media in the LoudCrowd platform.
                            type: string
                            example: XYZ123ABC
                          imageSrc:
                            description: The URL of the custom media image.
                            type:
                            - string
                            - 'null'
                            example: https://media.loudcrowd.com/17841409007688784.jpg
                      taggedMedias:
                        type:
                        - array
                        - 'null'
                        items:
                          type: object
                          $ref: '#/components/schemas/mediaItem'
                        maxItems: 250
                      featuredAt:
                        description: If the product is featured, the date it was featured in Coordinated Universal Time (UTC).
                        type:
                        - string
                        - 'null'
                        example: '2021-07-01T00:00:00Z'
                      pickedAt:
                        description: The date it was picked and added to the collection in Coordinated Universal Time (UTC).
                        type:
                        - string
                        - 'null'
                        example: '2021-07-01T00:00:00Z'
        '400':
          $ref: '#/components/responses/400'
        '404':
          $ref: '#/components/responses/404'
      tags:
      - StorefrontProductDetails
    servers:
    - url: https://store-api.loudcrowd.com/api
      description: The base url for the LoudCrowd Creator Storefronts API.
      variables: {}
components:
  schemas:
    productPrices:
      properties:
        discountedPriceRanges:
          description: List of the discounted price ranges for the product.
          items:
            properties:
              discount:
                properties:
                  id:
                    type: string
                type: object
              range:
                properties:
                  max:
                    type: number
                  min:
                    type: number
                type: object
            type: object
          type: array
          maxItems: 10
        discountedPrices:
          description: List of the discounted prices for the product.
          items:
            properties:
              discount:
                properties:
                  id:
                    type: string
                type: object
              price:
                type: number
            type: object
          type: array
          maxItems: 10
        price:
          description: The price of the product.
          type:
          - number
          - 'null'
        priceRange:
          description: The price range of the product.
          properties:
            max:
              type: number
            min:
              type: number
          type:
          - object
          - 'null'
        promotionalPrice:
          description: If there is a site wide promotion applied to the product data, the promotional price of the product.
          type:
          - number
          - 'null'
        promotionalPriceRange:
          description: If there is a site wide promotion applied to the product data, the promotional price range of the product.
          properties:
            max:
              type: number
            min:
              type: number
          type:
          - object
          - 'null'
        salePrice:
          description: The sale price of the product.
          type:
          - number
          - 'null'
        salePriceRange:
          description: The sale price range of the product.
          properties:
            max:
              type: number
            min:
              type: number
          type:
          - object
          - 'null'
      type:
      - object
      - 'null'
    priceCurrencyCode:
      enum:
      - USD
      - CAD
      - GBP
      - AUD
      - AED
      - AFN
      - ALL
      - AMD
      - ANG
      - AOA
      - ARS
      - AWG
      - AZN
      - BAM
      - BBD
      - BDT
      - BGN
      - BHD
      - BIF
      - BMD
      - BND
      - BOB
      - BOV
      - BRL
      - BSD
      - BTN
      - BWP
      - BYN
      - BZD
      - CDF
      - CHE
      - CHF
      - CHW
      - CLF
      - CLP
      - CNY
      - COP
      - COU
      - CRC
      - CUC
      - CUP
      - CVE
      - CZK
      - DJF
      - DKK
      - DOP
      - DZD
      - EGP
      - ERN
      - ETB
      - EUR
      - FJD
      - FKP
      - GEL
      - GHS
      - GIP
      - GMD
      - GNF
      - GTQ
      - GYD
      - HKD
      - HNL
      - HRK
      - HTG
      - HUF
      - IDR
      - ILS
      - INR
      - IQD
      - IRR
      - ISK
      - JMD
      - JOD
      - JPY
      - KES
      - KGS
      - KHR
      - KMF
      - KPW
      - KRW
      - KWD
      - KYD
      - KZT
      - LAK
      - LBP
      - LKR
      - LRD
      - LSL
      - LYD
      - MAD
      - MDL
      - MGA
      - MKD
      - MMK
      - MNT
      - MOP
      - MRU
      - MUR
      - MVR
      - MWK
      - MXN
      - MXV
      - MYR
      - MZN
      - NAD
      - NGN
      - NIO
      - NOK
      - NPR
      - NZD
      - OMR
      - PAB
      - PEN
      - PGK
      - PHP
      - PKR
      - PLN
      - PYG
      - QAR
      - RON
      - RSD
      - RUB
      - RWF
      - SAR
      - SBD
      - SCR
      - SDG
      - SEK
      - SGD
      - SHP
      - SLE
      - SLL
      - SOS
      - SRD
      - SSP
      - STN
      - SVC
      - SYP
      - SZL
      - THB
      - TJS
      - TMT
      - TND
      - TOP
      - TRY
      - TTD
      - TWD
      - TZS
      - UAH
      - UGX
      - USN
      - UYI
      - UYU
      - UYW
      - UZS
      - VED
      - VES
      - VND
      - VUV
      - WST
      - XAF
      - XAG
      - XAU
      - XBA
      - XBB
      - XBC
      - XBD
      - XCD
      - XDR
      - XOF
      - XPD
      - XPF
      - XPT
      - XSU
      - XTS
      - XUA
      - XXX
      - YER
      - ZAR
      - ZMW
      - ZWL
      type:
      - string
      - 'null'
      description: The currency code of the product prices.
      example: USD
    selectedOptionItem:
      properties:
        name:
          description: The name of the selected option.
          type:
          - string
          - 'null'
          example: Color
        value:
          description: The value of the selected option.
          type:
          - string
          - 'null'
          example: Red
      type: object
    mediaItem:
      type: object
      properties:
        caption:
          description: The caption of the media item.
          type:
          - string
          - 'null'
          example: Check out my new shoes!
        children:
          description: If the media item is a carousel, the items in the carousel.
          items:
            properties:
              mediaType:
                enum:
                - IMAGE
                - VIDEO
                - CAROUSEL_ALBUM
                type:
                - string
                - 'null'
                description: The media type of the carousel child item.
                example: VIDEO
              mediaUrl:
                type:
                - string
                - 'null'
                description: The URL of the media item.
                example: https://media.loudcrowd.com/18057689623487832.mp4
            type: object
          type:
          - array
          - 'null'
          maxItems: 100
        mediaType:
          enum:
          - IMAGE
          - VIDEO
          - CAROUSEL_ALBUM
          type:
          - string
          - 'null'
          description: The media type of the item.
          example: VIDEO
        mediaUrl:
          type:
          - string
          - 'null'
          description: The URL of the media item.
          example: https://media.loudcrowd.com/18057689623487832.mp4
        platform:
          enum:
          - INSTAGRAM
          - TIKTOK
          type:
          - string
          - 'null'
          description: The social platform of the media item.
          example: INSTAGRAM
        postType:
          enum:
          - FEED
          - STORY
          - REELS
          type:
          - string
          - 'null'
          description: The type of post the media item is. This is dependent on the platform.
          example: REELS
        postedAt:
          type:
          - string
          - 'null'
          description: The date the media item was posted in Coordinated Universal Time (UTC).
          example: '2021-07-01T00:00:00Z'
  responses:
    '400':
      description: Request is missing or has a bad parameter.
      content:
        application/json:
          schema:
            type: object
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Bad Request
    '404':
      description: The requested resource doesn't exist.
      content:
        application/json:
          schema:
            type: object
            properties:
              code:
                type: integer
                example: 404
              message:
                type: string
                example: Not Found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"'
    accountKeyAuth:
      type: apiKey
      in: header
      name: X-LC-Account-Key
      description: API token created in LoudCrowd.
      x-default: YOUR_API_TOKEN
x-refined-from:
- loudcrowd-creator-storefronts-openapi.yml
- loudcrowd-openapi.yml
x-readme:
  explorer-enabled: false