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

# /getyourguide/activities

> Get full GetYourGuide activity (tour/experience) details by id or activity URL: title, abstract and full description, highlights, duration, price, inclusions and exclusions, what to bring, not allowed and good to know notes, key details, itinerary stops, meeting point with coordinates, rating and rating breakdown by topic, review count, languages, supplier, city, and photos.

**Price:** 1 credit

**⚠️ Common errors:** 412: Activity not found (well-formed but nonexistent activity id, or page has no activity)



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/getyourguide/activities
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/getyourguide/activities:
    post:
      tags:
        - /getyourguide
      summary: /getyourguide/activities
      description: >-
        Get full GetYourGuide activity (tour/experience) details by id or
        activity URL: title, abstract and full description, highlights,
        duration, price, inclusions and exclusions, what to bring, not allowed
        and good to know notes, key details, itinerary stops, meeting point with
        coordinates, rating and rating breakdown by topic, review count,
        languages, supplier, city, and photos.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Activity not found (well-formed but
        nonexistent activity id, or page has no activity)
      operationId: __api_getyourguide_activities_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetYourGuideActivitiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GetYourGuideActivity'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GetYourGuideActivitiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        activity:
          type: string
          minLength: 1
      type: object
      required:
        - activity
    GetYourGuideActivity:
      properties:
        '@type':
          type: string
          default: GetYourGuideActivity
        id:
          type: integer
        abstract:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: string
            - type: 'null'
        cancellation_policy:
          anyOf:
            - type: string
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        highlights:
          items:
            type: string
          type: array
          default: []
        inclusions:
          items:
            type: string
          type: array
          default: []
        exclusions:
          items:
            type: string
          type: array
          default: []
        what_to_bring:
          items:
            type: string
          type: array
          default: []
        not_allowed:
          items:
            type: string
          type: array
          default: []
        good_to_know:
          items:
            type: string
          type: array
          default: []
        key_details:
          items:
            $ref: '#/components/schemas/GetYourGuideKeyDetail'
          type: array
          default: []
        itinerary:
          items:
            $ref: '#/components/schemas/GetYourGuideItineraryStop'
          type: array
          default: []
        meeting_point:
          anyOf:
            - $ref: '#/components/schemas/GetYourGuideMeetingPoint'
            - type: 'null'
        price:
          anyOf:
            - $ref: '#/components/schemas/GetYourGuidePrice'
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_categories:
          items:
            $ref: '#/components/schemas/GetYourGuideRatingCategory'
          type: array
          default: []
        supplier:
          anyOf:
            - $ref: '#/components/schemas/GetYourGuideSupplier'
            - type: 'null'
        city_id:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - title
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GetYourGuideKeyDetail:
      properties:
        '@type':
          type: string
          default: GetYourGuideKeyDetail
      type: object
      required:
        - title
    GetYourGuideItineraryStop:
      properties:
        '@type':
          type: string
          default: GetYourGuideItineraryStop
        name:
          type: string
      type: object
      required:
        - name
    GetYourGuideMeetingPoint:
      properties:
        '@type':
          type: string
          default: GetYourGuideMeetingPoint
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    GetYourGuidePrice:
      properties:
        '@type':
          type: string
          default: GetYourGuidePrice
        amount:
          anyOf:
            - type: number
            - type: 'null'
        formatted:
          anyOf:
            - type: string
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GetYourGuideRatingCategory:
      properties:
        '@type':
          type: string
          default: GetYourGuideRatingCategory
        name:
          type: string
        rating:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    GetYourGuideSupplier:
      properties:
        '@type':
          type: string
          default: GetYourGuideSupplier
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          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

````