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

# /fiverr/gigs/reviews

> Get Fiverr (fiverr.com) reviews for a gig by 'username/gig-slug' or full gig URL

**Price:** 20 credits per 10 results

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



## OpenAPI

````yaml /openapi/jobs.json post /api/fiverr/gigs/reviews
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/fiverr/gigs/reviews:
    post:
      tags:
        - /fiverr
      summary: /fiverr/gigs/reviews
      description: >-
        Get Fiverr (fiverr.com) reviews for a gig by 'username/gig-slug' or full
        gig URL


        **Price:** 20 credits per 10 results


        **⚠️ Common errors:** 412: Gig not found
      operationId: __api_fiverr_gigs_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FiverrGigReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FiverrReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FiverrGigReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        locale:
          $ref: '#/components/schemas/FiverrLocale'
          default: en
        currency:
          $ref: '#/components/schemas/FiverrCurrency'
          default: USD
        gig:
          type: string
          minLength: 1
          pattern: >-
            ^(?:https?://[^\s]+|(?:www\.|[a-z]{2}\.)?fiverr\.com/[^\s]+|[A-Za-z0-9][A-Za-z0-9_-]*/[^\s/?#]+)$
        count:
          type: integer
          minimum: 1
        rating:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 1
            - type: 'null'
      type: object
      required:
        - gig
        - count
    FiverrReview:
      properties:
        '@type':
          type: string
          default: FiverrReview
        id:
          type: string
        text:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        reviewer_username:
          anyOf:
            - type: string
            - type: 'null'
        reviewer_country:
          anyOf:
            - type: string
            - type: 'null'
        reviewer_country_code:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        order_duration_days:
          anyOf:
            - type: integer
            - type: 'null'
        order_price_range:
          anyOf:
            - type: string
            - type: 'null'
        price_range_start:
          anyOf:
            - type: number
            - type: 'null'
        price_range_end:
          anyOf:
            - type: number
            - type: 'null'
        work_sample:
          anyOf:
            - type: string
            - type: 'null'
        work_sample_preview:
          anyOf:
            - type: string
            - type: 'null'
        seller_response:
          anyOf:
            - $ref: '#/components/schemas/FiverrSellerResponse'
            - type: 'null'
        is_repeat_buyer:
          anyOf:
            - type: boolean
            - type: 'null'
        is_business:
          anyOf:
            - type: boolean
            - type: 'null'
        is_cancelled_order:
          anyOf:
            - type: boolean
            - type: 'null'
        reviewer_industries:
          items:
            type: string
          type: array
          default: []
        gig_id:
          anyOf:
            - type: integer
            - type: 'null'
        gig_alias:
          anyOf:
            - type: string
            - type: 'null'
        reviewer_review_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FiverrLocale:
      type: string
      enum:
        - en
        - de
        - es
        - fr
        - it
        - nl
        - pt
    FiverrCurrency:
      type: string
      enum:
        - USD
        - EUR
        - GBP
        - AUD
        - CAD
        - ILS
        - BRL
        - HKD
        - SEK
        - NZD
        - SGD
        - CHF
        - ZAR
        - CNY
        - INR
        - MYR
        - MXN
        - PKR
        - PHP
        - TWD
        - THB
        - TRY
        - AED
    FiverrSellerResponse:
      properties:
        '@type':
          type: string
          default: FiverrSellerResponse
        text:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - 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

````