tenor-client
    Preparing search index...

    Interface TenorAutocompleteOptions

    interface TenorAutocompleteOptions {
        country?: string;
        limit?: number;
        locale?: `${string}${string}-${string}${string}`;
        query: string;
    }
    Index

    Properties

    country?: string

    Optional, but strongly recommended. Country of origin for the request. Two-letter ISO 3166-1 alpha-2 country code.

    "US"
    
    limit?: number

    Fetch up to the specified number of results. Maximum value is 50.

    20
    
    locale?: `${string}${string}-${string}${string}`

    Optional, but strongly recommended. Default language to interpret the query. First two letters should be the two-letter language code according to ISO 639 Last two letters should be the two-letter ISO 3166-1 alpha-2 country code. The country code and language code should be separated by a hyphen (-)

    "en-US"
    
    query: string

    The query search string. Recommended to pass unmodified from the user.