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

# /2025-07/retail-media/line-items/{externalLineItemId}/keywords/recommended

> Retrieves a collection of recommended keywords for a line item



## OpenAPI

````yaml https://api.criteo.com/2025-07/retailmedia/open-api-specifications.json get /2025-07/retail-media/line-items/{externalLineItemId}/keywords/recommended
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: 2025-07
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Billing
  - name: Campaign
  - name: Gateway
paths:
  /2025-07/retail-media/line-items/{externalLineItemId}/keywords/recommended:
    get:
      tags:
        - Campaign
      summary: >-
        /2025-07/retail-media/line-items/{externalLineItemId}/keywords/recommended
      description: Retrieves a collection of recommended keywords for a line item
      operationId: GetRecommendedKeywords
      parameters:
        - name: externalLineItemId
          in: path
          description: The line item identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ValueResourceOutcomeOfRecommendedKeywordsResult
      deprecated: true
      security:
        - oauth:
            - RetailMedia_Campaign_Read
components:
  schemas:
    ValueResourceOutcomeOfRecommendedKeywordsResult:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ValueResourceOfRecommendedKeywordsResult'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Errors that occured during this call.
          nullable: true
          readOnly: true
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Warnings that occured during this call.
          nullable: true
          readOnly: true
      additionalProperties: false
      description: >-
        A top-level object that encapsulates a Criteo API response for a single
        value object.
    ValueResourceOfRecommendedKeywordsResult:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/RecommendedKeywordsResult'
        type:
          type: string
          description: Type of the resource.
          nullable: true
      additionalProperties: false
      description: A value resource exposed by the API.
      nullable: true
    SdkApiRestCommonProblem:
      type: object
      properties:
        code:
          type: string
          description: A machine-readable error code, expressed as a string value.
          nullable: true
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: A URI that identifies the specific occurrence of the problem.
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            A machine-readable structure to reference to the exact location(s)
            causing the error(s).
          nullable: true
        stackTrace:
          type: string
          description: ''
          nullable: true
        title:
          type: string
          description: A short human-readable description of the problem type.
          nullable: true
        traceId:
          type: string
          description: The request correlation ID this problem comes from.
          nullable: true
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: The problem's category.
          nullable: true
      additionalProperties: false
      description: Common problem object.
    RecommendedKeywordsResult:
      type: object
      properties:
        keywords:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/Keywords'
          description: Dictionary of keywords to their keyword models
          nullable: true
        recommendedKeywords:
          type: array
          items:
            type: string
          description: Collection of recommended keywords
          nullable: true
      additionalProperties: false
      description: Response model for recommended keywords
      nullable: true
    Keywords:
      type: object
      properties:
        bid:
          type: number
          description: >-
            The bid to use when a positive keyword matches the shopper search
            phrase
          format: double
          nullable: true
        createdAt:
          type: string
          description: The time at which this keyword was created in UTC
          format: date-time
        inputKeywords:
          $ref: '#/components/schemas/InputKeywords'
        matchType:
          enum:
            - PositiveExactMatch
            - NegativeExactMatch
            - NegativeBroadMatch
            - Unknown
          type: string
          description: >-
            The matching algorthim to be use when comparing this keyword with
            the shopper search phrase
        reviewState:
          enum:
            - InReview
            - Recommended
            - Approved
            - AutoApproved
            - Rejected
            - AutoRejected
            - Unkown
          type: string
          description: Review status of the keyword
        updatedAt:
          type: string
          description: The time at which the keyword was last modified in UTC
          format: date-time
      additionalProperties: false
      description: Data associated with a normalized keyword phrase
    InputKeywords:
      type: object
      properties:
        negativeBroad:
          type: array
          items:
            type: string
          description: The collection of supplied negative broad phrased
          nullable: true
        negativeExact:
          type: array
          items:
            type: string
          description: The collection of supplied negative exact phrase
          nullable: true
        positiveExact:
          type: array
          items:
            type: string
          description: The collection of supplied positive exact phrases
          nullable: true
      additionalProperties: false
      description: >-
        Keywords submitted by the user binned by type after some cleanup has
        been performed
  securitySchemes:
    oauth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://api.criteo.com/oauth2
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}

````