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

# List Google Extended Reviews jobs

> List submitted Google Extended Reviews jobs. Requires scope `data:reviews:read`.



## OpenAPI

````yaml /api-specs/data.json get /data/reviews/v1/google/extended-reviews
openapi: 3.1.0
info:
  title: Voyant Data API
  version: 1.0.0
  description: >-
    Public REST API for the Voyant Data product. Voyant Data is a set of
    Cloudflare Workers served behind the public gateway at
    https://api.voyant.travel. Each sub-product worker mounts internally at
    /v1/... and is exposed publicly under /data/{product}/v1/*. Sub-products:
    geo, air, fx, reviews, hotels, restaurants, experiences. Authentication is a
    bearer API token scoped per sub-product (data:{product}:read). List/search
    endpoints return { data, totalCount, nextCursor? }; single-item endpoints
    return { data }. Error bodies carry a stable code (NOT_FOUND,
    INVALID_REQUEST, INVALID_CURSOR, UPSTREAM_FAILED, INTERNAL_AUTH_REQUIRED,
    RATE_LIMITED).
servers:
  - url: https://api.voyant.travel
    description: Voyant Data public gateway
security:
  - bearerAuth: []
tags:
  - name: Geo
    description: >-
      Canonical travel geography (countries, regions, cities, ports, waterways)
      plus language and timezone reference lookups. Scope: data:geo:read
  - name: Air
    description: >-
      Aviation reference data: airports, airlines, aircraft. Scope:
      data:air:read
  - name: FX
    description: >-
      Currency exchange (exchangerate-api.com white-label) plus the ISO 4217
      currency catalog. Scope: data:fx:read
  - name: Reviews
    description: >-
      Google Reviews / Extended Reviews / Q&A and Trustpilot. Scope:
      data:reviews:read
  - name: Hotels
    description: 'Google Hotels and TripAdvisor (hotel-scoped). Scope: data:hotels:read'
  - name: Restaurants
    description: 'TripAdvisor restaurants. Scope: data:restaurants:read'
  - name: Experiences
    description: 'TripAdvisor attractions / experiences. Scope: data:experiences:read'
paths:
  /data/reviews/v1/google/extended-reviews:
    get:
      tags:
        - Reviews
      summary: List Google Extended Reviews jobs
      description: >-
        List submitted Google Extended Reviews jobs. Requires scope
        `data:reviews:read`.
      operationId: reviewsListGoogleExtendedReviews
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
          example: 20
        - name: cursor
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Jobs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerticalAsyncResourceListResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-codeSamples:
        - lang: typescript
          label: SDK
          source: >-
            import { createVoyantDataClient } from "@voyant-travel/data-sdk";


            const data = createVoyantDataClient({ apiKey:
            process.env.VOYANT_API_KEY });


            const result = await data.reviews.google.extendedReviews.list();
        - lang: bash
          label: cURL
          source: |-
            curl --request GET \
              --url https://api.voyant.travel/data/reviews/v1/google/extended-reviews \
              --header 'Authorization: Bearer <token>'
        - lang: javascript
          label: Node
          source: >-
            const response = await
            fetch("https://api.voyant.travel/data/reviews/v1/google/extended-reviews",
            {
              method: "GET",
              headers: {
                "Authorization": "Bearer <token>"
              },
            });


            const data = await response.json();
        - lang: python
          label: Python
          source: |-
            import requests

            response = requests.get(
                "https://api.voyant.travel/data/reviews/v1/google/extended-reviews",
                headers={
                    "Authorization": "Bearer <token>"
                }
            )

            data = response.json()
components:
  schemas:
    VerticalAsyncResourceListResponse:
      type: object
      required:
        - data
        - totalCount
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/VerticalAsyncResource'
        totalCount:
          type: integer
        nextCursor:
          type: string
    VerticalAsyncResource:
      type: object
      required:
        - id
        - status
        - createdAt
        - request
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - queued
            - running
            - succeeded
            - failed
        createdAt:
          type: string
          format: date-time
        completedAt:
          oneOf:
            - type: string
              format: date-time
            - type: 'null'
        request:
          $ref: '#/components/schemas/OpaqueRecord'
        result:
          oneOf:
            - $ref: '#/components/schemas/OpaqueRecord'
            - type: 'null'
        cost:
          oneOf:
            - type: object
              required:
                - credits
              properties:
                credits:
                  type: number
            - type: 'null'
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
        webhook:
          oneOf:
            - type: object
              required:
                - url
                - deliveredAt
                - attempts
              properties:
                url:
                  type: string
                deliveredAt:
                  oneOf:
                    - type: string
                      format: date-time
                    - type: 'null'
                attempts:
                  type: integer
                lastError:
                  type: string
            - type: 'null'
    Error:
      type: object
      required:
        - code
      properties:
        code:
          type: string
          enum:
            - NOT_FOUND
            - INVALID_REQUEST
            - INVALID_CURSOR
            - UPSTREAM_FAILED
            - INTERNAL_AUTH_REQUIRED
            - RATE_LIMITED
          description: Stable machine-readable error code.
        message:
          type: string
          description: Human-readable error detail.
    OpaqueRecord:
      type: object
      additionalProperties: true
      description: >-
        Provider passthrough record (camelCased on the wire). Kept open so
        provider-side field additions do not break clients.
  responses:
    Unauthorized:
      description: >-
        Missing or invalid bearer token / insufficient scope (code
        INTERNAL_AUTH_REQUIRED).
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Voyant Data API token, scoped per sub-product (data:{product}:read).
        Sent as `Authorization: Bearer <token>`.

````