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

# /trustradius/products

> Get TrustRadius (trustradius.com) product details by product slug or full product URL

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/reviews-software-employer.json post /api/trustradius/products
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/trustradius/products:
    post:
      tags:
        - /trustradius
      summary: /trustradius/products
      description: >-
        Get TrustRadius (trustradius.com) product details by product slug or
        full product URL


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Product not found
      operationId: __api_trustradius_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrustradiusProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrustradiusProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TrustradiusProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
          pattern: >-
            ^(?:https?://[^\s]+|//[^\s]+|(?:www\.)?trustradius\.com[^\s]*|[a-z0-9][a-z0-9-]*)$
      type: object
      required:
        - product
    TrustradiusProduct:
      properties:
        '@type':
          type: string
          default: TrustradiusProduct
        id:
          type: string
        alias:
          type: string
        name:
          type: string
        short_name:
          anyOf:
            - type: string
            - type: 'null'
        vendor_name:
          anyOf:
            - type: string
            - type: 'null'
        vendor_id:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        score:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        primary_category:
          anyOf:
            - type: string
            - type: 'null'
        starting_price:
          anyOf:
            - type: string
            - type: 'null'
        pricing_url:
          anyOf:
            - type: string
            - type: 'null'
        total_installs:
          anyOf:
            - type: integer
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/TrustradiusProductCategory'
          type: array
          default: []
        screenshots:
          items:
            type: string
          type: array
          default: []
        edition_pricing:
          items:
            $ref: '#/components/schemas/TrustradiusEditionPricing'
          type: array
          default: []
        feature_ratings:
          items:
            $ref: '#/components/schemas/TrustradiusFeatureRating'
          type: array
          default: []
        pros:
          items:
            type: string
          type: array
          default: []
        cons:
          items:
            type: string
          type: array
          default: []
        awards:
          items:
            $ref: '#/components/schemas/TrustradiusAward'
          type: array
          default: []
        competitors:
          items:
            $ref: '#/components/schemas/TrustradiusCompetitor'
          type: array
          default: []
        connectors:
          items:
            $ref: '#/components/schemas/TrustradiusConnector'
          type: array
          default: []
        industry_install_share:
          items:
            $ref: '#/components/schemas/TrustradiusIndustryShare'
          type: array
          default: []
        faq:
          items:
            $ref: '#/components/schemas/TrustradiusFaq'
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - alias
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TrustradiusProductCategory:
      properties:
        '@type':
          type: string
          default: TrustradiusProductCategory
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    TrustradiusEditionPricing:
      properties:
        '@type':
          type: string
          default: TrustradiusEditionPricing
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: string
            - type: 'null'
        period:
          anyOf:
            - type: string
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TrustradiusFeatureRating:
      properties:
        '@type':
          type: string
          default: TrustradiusFeatureRating
        name:
          type: string
        score:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        category_average:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    TrustradiusAward:
      properties:
        '@type':
          type: string
          default: TrustradiusAward
        award_type:
          anyOf:
            - type: string
            - type: 'null'
        published_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - title
    TrustradiusCompetitor:
      properties:
        '@type':
          type: string
          default: TrustradiusCompetitor
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        score:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    TrustradiusConnector:
      properties:
        '@type':
          type: string
          default: TrustradiusConnector
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    TrustradiusIndustryShare:
      properties:
        '@type':
          type: string
          default: TrustradiusIndustryShare
        name:
          type: string
        naics_code:
          anyOf:
            - type: string
            - type: 'null'
        company_count:
          anyOf:
            - type: integer
            - type: 'null'
        install_share_pct:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    TrustradiusFaq:
      properties:
        '@type':
          type: string
          default: TrustradiusFaq
        question:
          type: string
        answer:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - question
    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

````