url
stringlengths
11
2.25k
text
stringlengths
88
50k
ts
timestamp[s]date
2026-01-13 08:47:33
2026-01-13 09:30:40
https://sr.ht/~geb/hjkl/
hjkl: Vim-like pager with keyboard selection sourcehut Log in — Register ~geb / hjkl summary source mailing list Vim-like pager with keyboard selection Re: [PATCH] Fix issues with device independent geometry ~geb via public-inbox 2 months ago [PATCH] Fix issues with device independent geometry David J. Rosenbaum djr7c4@gmail.com via public-inbox 2 months ago View project feed  RSS  Report abuse # hjkl hjkl is a vim-like pager with keyboard-based text selection. You can use it as a "scrollback pager" to select text on your terminal's buffer without a mouse. # Install From Source Requires: go (>=1.19) scdoc xclip if you're on X11 or wl-clipboard if you're on Wayland. Run: $ sudo ./install.sh # Usage See the manpage . # Using hjkl as a Scrollback Pager Using hjkl to select text on your terminal's buffer requires a terminal emulator that lets you pipe the buffer to an external command, or layering on top a terminal multiplexer with the ability. # kitty You can use hjkl as your scrollback pager for the kitty terminal emulator with these lines in your kitty.conf: scrollback_pager hjkl -o -e G map kitty_mod+k show_scrollback # rxvt-unicode hjkl is installed with an extension for the urxvt terminal emulator to use hjkl as a scrollback pager. # st There's a script in this repo to use hjkl as a scrollback pager with st and the externalpipe patch. # Status I will tag release 0.1 after a little time has passed. Tabs are currently replaced with eight spaces, and I'd like support for manpage style markdown and maybe ansi colors before 1.0. # Contact You can send questions, thoughts or patches by composing an email to ~geb/public-inbox@lists.sr.ht . # Support Me Thank you! # License GPLv3 only, see LICENSE . Copyright (c) 2022 John Gebbie
2026-01-13T09:30:13
https://sr.ht/projects?search=%23music
Browse projects on sourcehut sourcehut Log in — Register Browse public projects Sort results by Recently updated Longest active Apply ~fec / pop.md POP is a music blog by Florian Eckerstorfer #blog #music #eleventy ~jaxter184 / tlature A tracker-style OSC sequencer with a TUI interface #music #tui ~dystiv / dysthymia tui music software #music ~phw / musicbrainz My personal MusicBrainz and ListenBrainz related projects #music #musicbrainz #listenbrainz ~hannes / lucoa WHUMP-based music player #music #web ~ft / unflac A command line tool for fast frame accurate audio image + cue sheet splitting #music #flac #cue ~johnteske / music general music-related projects #music #composition ~lepisma / mbzlists Annotated playlist manager #music #playlist ~waporwave / KonpactoOLD Portable synth based tracker #music #tracker #synth ~earboxer / musicdir Download free* music as if it were alpine packages #alpine #music #creativecommons ~ioana / morg A little music organizer #music ~fed / gradus A music composition workbench #clojurescript #web-audio #music ~rwv / semira Plays your music collection over the web in your browser #music #streaming #web ~liliace / tick A preset-oriented metronome TUI #music #tui ~liliace / japt A metadata retriever for songs #music 1 / 5 next Featured projects ~vicho/ el_poblador #board-games #tui #catan A terminal-based implementation of Settlers of Catan ~sheepy/ 3ds-homebrew #3ds #homebrew #rust A collection of "silly" 3DS homebrew projects. ~reykjalin/ Fonn #editor #tui #zig Fönn is a code editor powered by libfn, a text editor engine as a library. ~mlb/ linkhut #social #bookmarks A social bookmarking website ~bptato/ chawan #browser #pager A web browser for your terminal emulator More featured projects
2026-01-13T09:30:13
https://sr.ht/~marcc/agendafs/
agendafs: A filesystem for syncing notes to your calendar sourcehut Log in — Register ~marcc / agendafs summary sources mailing lists tickets A filesystem for syncing notes to your calendar 8b27680 Change to 5 ~marcc pushed to ~marcc/agendafs git 22 days ago ad0e031 README ~marcc pushed to ~marcc/agendafs git 2 months ago View project feed  RSS  Report abuse # agendafs Homepage | Todo | Mailing List + Patches Agendafs is a FUSE-based filesystem for writing notes. It creates a shim over vdir storages , allowing you to write notes as regular files and synchronize them back to a caldav server. It supports directories, categories, arbitrary metadata and access rights. # Status Agendafs is still in early development and is alpha-level software. It probably leaks memory, destroys files and might summon demons. However, I use it daily for my note-taking mostly without issues. If you try it out, I recommend creating a new calendar specifically for agendafs and also regularly backing up your notes elsewhere. # Installation Prerequisites: scdoc (man pages), C compiler (currently only tested with gcc), libfuse, libuuid, libical and pkg-config. Optionally a shell.nix exists which sets up all dependencies for you. Some fields, such as categories, are accessed via xattributes (xattr(7)), for that you will need to have the xattribute utilities installed. You also need to setup a tool that syncs vdir storages to a caldav server, like vdirsyncer or pimsync . To build: git clone https://sr.ht/~marcc/agendafs/ cd agendafs make make install # Basic Principles Agendafs uses a vdir storage as a backend to allow users to sync VJOURNAL entries to a remote caldav server. Agendafs scans the vdir directory for VJOURNAL entries to populate the file tree. Each VJOURNAL entry is represented as a file or directory in Agendafs. Edit these files like you would on a regular filesystem. Some VJOURNAL attributes can also be accessed via xattr(7), for example categories a.k.a. tags. The full list of supported user attributes can be found in the manpage. Agendafs pairs well with file explorers like ranger , lf or nnn . # Usage To mount a vdir storage with Agendafs: mount.agendafs -o vdir=<vdir directory> <mountpoint> See agendafs(8) and agendafs-examples(7) for a full list of options and examples. # Limitations Some major features are missing before a beta release: Attachment support is missing Symlink support is missing Depending on the caldav server, there might be limitations as to how big a file can be. Usually the limit of one entry is ~5MB, but agendafs does currently not enforce any file size limit. # Motivation Note-taking tools like Obsidian and Logseq have great syncing capabilities, but they restrict you to only those editors. I wanted a solution that is more Unixy, and allow me to use my favorite CLI tools. Plain-text notes seemed like the obvious solution, but I struggled to find a good solution for syncing and editing notes on other devices. Caldav makes for a great place to store notes, since many already have a provider. Storing notes in ical-format means that I can also take advantage of mobile apps for editing my notes, such as jtx Board on Android. Agendafs also have some features that are too unergonomic on regular filesystems. It makes full use of Xattributes to store categories, classification (public vs private) and any other arbitrary metadata to the file. This means that it frees you from just using one file-format while still giving you capabilities to link notes, either via directories or via categories (sibling linking exists in the ical spec, but this is not supported yet). This also makes it easy to pair Agendafs with CLI tools, file explorers like nnn, lf, ranger and also editors like Kakoune and Neovim. For example, you could easily extend lf to show if a file is draft or not. I documented in examples what this might look like Of course, you can also ignore those features and just use Agendafs as a way to just backup your todotxt or jrnl . # Appendix # VJOURNAL support in Nextcloud calendars To have vjournal support on Nextcloud, I needed to create the calendar manually. This is probably also required if you use Fastmail. curl -X MKCALENDAR \ -u me:me \ -H 'Content-Type: application/xml; charset=utf-8' \ -d "<?xml version='1.0' encoding='UTF-8'?> <mkcalendar xmlns='urn:ietf:params:xml:ns:caldav'> <set> <prop> <displayname xmlns='DAV:'>Journal</displayname> <calendar-description xmlns='urn:ietf:params:xml:ns:caldav'>Calendar with VJOURNAL support</calendar-description> <supported-calendar-component-set xmlns='urn:ietf:params:xml:ns:caldav'> <comp name='VEVENT'/> <comp name='VTODO'/> <comp name='VJOURNAL'/> </supported-calendar-component-set> </prop> </set> </mkcalendar>" \ 'https://my-nextcloud-server/remote.php/dav/calendars/me/journal' # Find files by category with nnn Add the following function to your profile to search your notes files with a matching category. find_by_category () { category = $1 if [ -z " $category " ] ; then echo "Usage: find_by_category <category>" > & 2 return 1 fi find . -type f | while read -r file ; do fullpath = $( realpath " $file " ) value = $( getfattr --only-values -n user.categories -- " $file " 2 >/dev/null ) case $value in * " $category " * ) printf '%s\0' " $fullpath " ;; esac done } Usage: find_by_category MY_CATEGORY | nnn # Why C? I started this project to improve my C skills.
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.adSources.adapters
REST Resource: accounts.adSources.adapters  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference REST Resource: accounts.adSources.adapters Stay organized with collections Save and categorize content based on your preferences. Resource Methods Resource There is no persistent data associated with this resource. Methods list List the adapters of the ad source. Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["The document describes a resource with no persistent data. It outlines a single method, `list`, which is available for this resource. This `list` method, accessed via the `/admob/api/reference/rest/v1beta/accounts.adSources.adapters/list` endpoint, allows users to retrieve a list of the adapters associated with a particular ad source. No other actions or data persistence are documented.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.campaignReport
REST Resource: accounts.campaignReport  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference REST Resource: accounts.campaignReport Stay organized with collections Save and categorize content based on your preferences. Resource Methods Resource There is no persistent data associated with this resource. Methods generate Generates Campaign Report based on provided specifications. Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["The content outlines a resource that lacks persistent data. It details a single method, `generate`, which is part of the `accounts.campaignReport` service. This method's core function is to create a Campaign Report, driven by user-specified criteria. The resource itself holds no stored information, serving as a functional endpoint for report creation.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.adUnits
REST Resource: accounts.adUnits  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference REST Resource: accounts.adUnits Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag An AdUnit resource describes an AdMob ad unit with properties like name, ID, associated app ID, display name, ad format, supported ad types, and optional reward settings. The RewardSettings object, which can be set for "REWARDED" ad units, includes the reward amount ( unitAmount ) and reward item ( unitType ). The available methods for AdUnits include create to make a new ad unit and list to retrieve existing ad units under a specified AdMob account. Resource: AdUnit JSON representation RewardSettings JSON representation Methods Resource: AdUnit Describes an AdMob ad unit. JSON representation { "name" : string , "adUnitId" : string , "appId" : string , "displayName" : string , "adFormat" : string , "adTypes" : [ string ] , "rewardSettings" : { object ( RewardSettings ) } } Fields name string Resource name for this ad unit. Format is accounts/{publisherId}/adUnits/{ad_unit_id_fragment} Example: accounts/pub-9876543210987654/adUnits/0123456789 adUnitId string The externally visible ID of the ad unit which can be used to integrate with the AdMob SDK. This is a read only property. Example: ca-app-pub-9876543210987654/0123456789 appId string The externally visible ID of the app this ad unit is associated with. Example: ca-app-pub-9876543210987654~0123456789 displayName string The display name of the ad unit as shown in the AdMob UI, which is provided by the user. The maximum length allowed is 80 characters. adFormat string AdFormat of the ad unit. Possible values are as follows: "APP_OPEN" - App Open ad format. "BANNER" - Banner ad format. "BANNER_INTERSTITIAL" - Legacy format that can be used as either banner or interstitial. This format can no longer be created but can be targeted by mediation groups. "INTERSTITIAL" - A full screen ad. Supported ad types are "RICH_MEDIA" and "VIDEO". "NATIVE" - Native ad format. "REWARDED" - An ad that, once viewed, gets a callback verifying the view so that a reward can be given to the user. Supported ad types are "RICH_MEDIA" (interactive) and video where video can not be excluded. "REWARDED_INTERSTITIAL" - Rewarded Interstitial ad format. Only supports video ad type. See https://support.google.com/admob/answer/9884467 . adTypes[] string Ad media type supported by this ad unit. Possible values as follows: "RICH_MEDIA" - Text, image, and other non-video media. "VIDEO" - Video media. rewardSettings object ( RewardSettings ) Optional. Settings for a rewarded ad unit. This can be set or unset only when the adFormat is "REWARDED". RewardSettings Settings for a rewarded ad unit. JSON representation { "unitAmount" : string , "unitType" : string } Fields unitAmount string ( int64 format) Reward amount for this ad unit. unitType string Reward item for this ad unit. Methods create Creates an ad unit under the specified AdMob account. list List the ad units under the specified AdMob account. Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["The core content details AdUnit and RewardSettings resources, including their JSON representations and fields. AdUnit describes an AdMob ad unit with properties like name, ID, app association, display name, format (e.g., banner, interstitial, rewarded), and supported ad types (e.g., rich media, video). RewardSettings defines settings for rewarded ad units, specifying the reward amount and item. Key methods are to create and list ad units under a given AdMob account.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://git.sr.ht/~sheepy/obelisk
~sheepy/obelisk - (3DS/Rust) bfsk modem for sending controller inputs to a host through an aux cable - sourcehut git sourcehut Log in — Register ~sheepy / obelisk summary tree log refs (3DS/Rust) bfsk modem for sending controller inputs to a host through an aux cable 996525f2 — sheepy0125 9 months ago update readme ffe46727 — sheepy0125 10 months ago finalize a4890097 — sheepy0125 10 months ago demodulate fsk refs main browse  log  clone read-only https://git.sr.ht/~sheepy/obelisk read/write git@git.sr.ht:~sheepy/obelisk Clone repo to your account You can also use your local clone with git send-email . # Obelisk Modulates keypad inputs over the headphone jack and demodulates them to act as a virtual controller.
2026-01-13T09:30:13
https://git.sr.ht/~sheepy/citro2d-rs
~sheepy/citro2d-rs - (3DS/Rust) (in)sane wrappers for libcitro2d - sourcehut git sourcehut Log in — Register ~sheepy / citro2d-rs summary tree log refs (3DS/Rust) (in)sane wrappers for libcitro2d a5fe2ca9 — sheepy0125 4 months ago Merge branch 'main' of git.sr.ht:~sheepy/citro2d-rs 67a36584 — sheepy0125 4 months ago (u8; 4) to u32 for colors; saner swizzling bf24dff6 — sheepy0125 5 months ago patch for broken upstream citro3d build refs main browse  log  clone read-only https://git.sr.ht/~sheepy/citro2d-rs read/write git@git.sr.ht:~sheepy/citro2d-rs Clone repo to your account You can also use your local clone with git send-email . # citro2d-rs A (very scuffed!) Rust library to wrap libcitro2d. Loosely based on rust3ds' citro3d-rs -- but with comically less thought put into it. Check out fruit for a UI library based on these wrappers. This repository contains two crates: citro2d-sys : Automated bindgens generated based on libcitro2d. citro2d : "Safe" Rusty wrappers for citro2d-sys externed functions. # Features [x] C2D_Image wrapper (with RGBA8 swizzling ) [x] ( image-decode feature) JPEG/PNG/etc. image decoding with cooperation [x] C2D_Sprite and C2D_Spritesheet wrapper [x] C2D_Text wrapper [x] BCFNT (+ gzipped) font support [ ] Fallback to system font on missing characters [ ] (Some of the) basic shapes [x] Line [x] Rectangle [x] Triangle [ ] Circle # Using For reasons I haven't looked into, place the build.rs in your project to link to C2D and C3D. // build.rs fn main () { // link libcitro2d and libcitro3d println! ( "cargo:rustc-link-lib=citro3d" ); println! ( "cargo:rustc-link-lib=citro2d" ); }
2026-01-13T09:30:13
https://git.sr.ht/~sheepy/silly-3ds-examples
~sheepy/silly-3ds-examples - sourcehut git sourcehut Log in — Register ~sheepy / silly-3ds-examples Unlisted summary tree log refs 469ce306 — sheepy0125 8 months ago add example table refs main browse  log  clone read-only https://git.sr.ht/~sheepy/silly-3ds-examples read/write git@git.sr.ht:~sheepy/silly-3ds-examples Clone repo to your account You can also use your local clone with git send-email . # silly 3DS examples! (these are just me playing around, wanting to do something fun, and/or helping a friend!) project description language c2d-image-example swizzling an RGBA8 image to a C2D_Image texture C 3ds-fruit-template fruit UI library & cabbage library template Rust 3ds-camera-example displaying outer camera to the top screen (in 3D mode) Rust 3ds-ndsp-example loading and playing a WAV file Rust
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.apps
REST Resource: accounts.apps  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference REST Resource: accounts.apps Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag The "App" resource describes an AdMob app for a specific platform like Android or iOS. Information for apps not linked to an app store is provided by "ManualAppInfo". "LinkedAppInfo" provides information from the app store if the app is linked to one. The "AppApprovalState" indicates the current approval status of the app. You can create and list apps under a specified AdMob account using the provided methods. Resource: App JSON representation ManualAppInfo JSON representation LinkedAppInfo JSON representation AndroidAppStore AppApprovalState Methods Resource: App Describes an AdMob app for a specific platform (For example: Android or iOS). JSON representation { "name" : string , "appId" : string , "platform" : string , "manualAppInfo" : { object ( ManualAppInfo ) } , "linkedAppInfo" : { object ( LinkedAppInfo ) } , "appApprovalState" : enum ( AppApprovalState ) } Fields name string Resource name for this app. Format is accounts/{publisherId}/apps/{app_id_fragment} Example: accounts/pub-9876543210987654/apps/0123456789 appId string The externally visible ID of the app which can be used to integrate with the AdMob SDK. This is a read only property. Example: ca-app-pub-9876543210987654~0123456789 platform string Describes the platform of the app. Limited to "IOS" and "ANDROID". manualAppInfo object ( ManualAppInfo ) The information for an app that is not linked to any app store. After an app is linked, this information is still retrivable. If no name is provided for the app upon creation, a placeholder name will be used. linkedAppInfo object ( LinkedAppInfo ) Immutable. The information for an app that is linked to an app store. This field is present if and only if the app is linked to an app store. appApprovalState enum ( AppApprovalState ) Output only. The approval state for the app. The field is read-only. ManualAppInfo Information provided for manual apps which are not linked to an application store (Example: Google Play, App Store). JSON representation { "displayName" : string } Fields displayName string The display name of the app as shown in the AdMob UI, which is provided by the user. The maximum length allowed is 80 characters. LinkedAppInfo Information from the app store if the app is linked to an app store. JSON representation { "appStoreId" : string , "displayName" : string , "androidAppStores" : [ enum ( AndroidAppStore ) ] } Fields appStoreId string The app store ID of the app; present if and only if the app is linked to an app store. If the app is added to the Google Play store, it will be the application ID of the app. For example: "com.example.myapp". See https://developer.android.com/studio/build/application-id . If the app is added to the Apple App Store, it will be app store ID. For example "105169111". Note that setting the app store id is considered an irreversible action. Once an app is linked, it cannot be unlinked. displayName string Output only. Display name of the app as it appears in the app store. This is an output-only field, and may be empty if the app cannot be found in the store. androidAppStores[] enum ( AndroidAppStore ) Optional. The app store information for published Android apps. This field is only used for apps on the Android platform and will be ignored if the PLATFORM is set to iOS. The default value is the Google Play App store. This field can be updated after app is created. If the app is not published, this field will not be included in the response. AndroidAppStore Android app stores. Enums ANDROID_APP_STORE_UNSPECIFIED Default value for an unset field. Do not use. GOOGLE_PLAY_APP_STORE Google Play Store. AMAZON_APP_STORE Amazon Appstore. OPPO_APP_STORE Oppo App Market. SAMSUNG_APP_STORE Samsung Galaxy Store. VIVO_APP_STORE VIVO App Store. XIAOMI_APP_STORE Xiaomi GetApps. AppApprovalState The app approval states for a mobile app. Enums APP_APPROVAL_STATE_UNSPECIFIED Default value for an unset field. Do not use. ACTION_REQUIRED The app requires additional user action to be approved. Please refer to https://support.google.com/admob/answer/10564477 for details and next steps. IN_REVIEW The app is pending review. APPROVED The app is approved and can serve ads. Methods create Creates an app under the specified AdMob account. list List the apps under the specified AdMob account. Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["This content details AdMob app management, outlining app properties and their associated data. Apps have a `name`, `appId`, and `platform` (Android or iOS). Apps can be manually added or linked to app stores with `appStoreId` and `displayName`. `ManualAppInfo` and `LinkedAppInfo` store specific data for each type. `AndroidAppStore` lists available app stores. `AppApprovalState` indicates the app's review status. Key methods include creating and listing apps.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://sr.ht/~leanghok/podden/
podden: minimal tui music player inspired by the ipod classic sourcehut Log in — Register ~leanghok / podden summary source mailing list tickets minimal tui music player inspired by the ipod classic ~leanghok/podden New ticket tracker added 6 days ago ~leanghok/podden New mailing list added 6 days ago View project feed  RSS  Report abuse # podden A minimal TUI MP3 player written in Go with Bubble Tea and beep . Inspired by the iPod Classic (5th Gen) . # ✨ Features Songs view: Browse and play songs from your music folder. Albums view: Browse albums. Artists view: Browse artists. Playing view: Show currently playing song details. Playback Controls: Pause, next, previous, fast forward, rewind. Lyrics: Synchronized song lyrics. Configuration: Customize podden to look how you want it to. Desktop Notifications: Cross platform desktop notifications Volume Control: Control songs volume # 📦 Installation Make sure you have Go installed (version 1.21+ recommended). Then run: go install github.com/leanghok120/podden@latest # 🚀 Usage After installing, simply run: podden If you want to use your own music driectory: podden -m path # Notes Podden is still in very early stages. By default, it looks for music in the ~/Music directory. (Use -m to change to your own music directory) Plays only .mp3 , .flac , .m4a files. # 🗒️ Todos [x] play songs with beep [x] pause, next, prev songs [x] play the next song after finished [x] add albums page [x] add artists page [x] show elapsed time / total time [x] add lyrics [x] fast forward/rewind songs [x] allow user to choose their own music folder [x] add config [x] add a help menu [ ] highlight lyrics [x] system notifications [x] volume control [ ] add cover image (fix styling and image not working in albums and artists page) [ ] fix recursive file search # 🤝 Contributing Contributions are welcome as long as they align with what the project's needs ! If you’d like to help improve podden, you can: Fork the repository Commit your changes Open a Pull Request # 🙏 Acknowledgements Charmbracelet for the TUI libraries gopxl for the beep audio library 0xAX for the desktop notification library lrclib for the synchronized lyrics The iPod Classic (5th Gen) — for inspiring the look & feel
2026-01-13T09:30:13
https://sr.ht/~leanghok/anigarden/
anigarden: cozy tui anime viewer sourcehut Log in — Register ~leanghok / anigarden summary source mailing list tickets cozy tui anime viewer ~leanghok/anigarden New ticket tracker added 6 days ago ~leanghok/anigarden New mailing list added 6 days ago View project feed  RSS  Report abuse # 🌸 anigarden A cozy TUI anime viewer written in Go with Bubble Tea and the HiAnime API . Browse, search, and watch anime right in the comfort of your terminal. # ✨ Features Home View: See trending or recommended anime right away. Search View: Search for your favorite anime. Anime View: See details about an anime and its episodes. Watchlist: Add and remove anime to watchlist. Toggle sub/dub: Change between sub and dub. Watch anime: Stream and watch an anime with mpv or anigarden-player . # 📦 Installation There are 2 ways to install: # Go Make sure you have mpv and Go installed (version 1.21+ recommended). Then run: go install github.com/leanghok120/anigarden@latest # Releases Go to the releases and download the binary that fits your machine # 🚀 Usage After installing, simply run: anigarden # Notes If the video file for sub is not playable, you can try switching to dub and vice versa. If mpv is not working, change clients to browser instead # 🗒️ Todos [x] home view [x] search view [x] style the info page [x] anime view [x] fix kyebinding issues [x] watch anime [x] add loading spinners [x] add favorites/watch list [x] use browser as defualt media player [ ] add themes/config [ ] use sakura instead of mpv [ ] add the anime poster image to info page (maybe) # 🤝 Contributing Contributions are welcome! If you’d like to help improve anigarden, you can: Fork the repository Commit your changes Open a Pull Request # 🙏 Acknowledgements Charmbracelet for the incredible Bubble Tea TUI framework and other TUI libraries ghoshRitesh12 for the HiAnime API yahyaMomin for the fallback HiAnime API mpv for the powerful media player
2026-01-13T09:30:13
https://sr.ht/projects/featured
Featured projects on sourcehut sourcehut Log in — Register Featured projects ~vicho / el_poblador A terminal-based implementation of Settlers of Catan #board-games #tui #catan ~sheepy / 3ds-homebrew A collection of "silly" 3DS homebrew projects. #3ds #homebrew #rust ~reykjalin / Fonn Fönn is a code editor powered by libfn, a text editor engine as a library. #editor #tui #zig ~mlb / linkhut A social bookmarking website #social #bookmarks ~bptato / chawan A web browser for your terminal emulator #browser #pager ~cismonx / bookmarkfs FUSE-based pseudo-filesystem for managing web browser bookmarks #fuse #bookmarks #filesystem ~sbinet / sako A Wallabag-compatible articles safekeeper #go #golang #wallabag ~delthas / senpai A modern terminal IRC client #irc #cli #ircv3 ~theonlymrcat / rivet A toy RISC-V emulator written as a learning project for Zig. #risc-v #emulator ~libreboot / lbmk A coreboot distribution providing free/open-source boot firmware on x86/ARM computers. ~mil / mobroute General-Purpose & Minimal FOSS Public Transportation Router #gtfs #routing #public-transit ~jacqueline / tangara An open hardware portable music player. ~mediagoblin / mediagoblin A free software media publishing platform that anyone can run. ~geb / numen Voice control for handsfree computing #voice-control #voice-input #accessibility ~tsileo / microblog.pub A self-hosted, single-user, ActivityPub powered microblog #activitypub #microblog 1 / 5 next
2026-01-13T09:30:13
https://sr.ht/~jaxter184/tlature/
tlature: A tracker-style OSC sequencer with a TUI interface sourcehut Log in — Register ~jaxter184 / tlature summary sources mailing list tickets A tracker-style OSC sequencer with a TUI interface 8209e44 Fix parameter modification ~jaxter184 pushed to ~jaxter184/tlature git 3 days ago a953f0a Fix warnings ~jaxter184 pushed to ~jaxter184/tlature git 5 days ago View project feed  RSS  Report abuse Pledge towards new features: https://crofu.org/~jaxter184/tlature # ↹lature ↹lature is a tracker-style DAW. Its most unique features include: First-class support for Open Sound Control (MIDI is only supported as a subset of OSC) CLAP plugin support Terminal UI Keyboard-focused workflow with Kakoune/vim style keybindings Headless mode for portable playback on a SBC or dedicated live performance machine A directly editable, git-friendly file format Demo (no audio): https://asciinema.org/a/628751 # Getting started # Installation git clone https://git.sr.ht/~jaxter184/tlature cd tlature # install standard library of CLAP plugins (to ~/.clap/) ./build.sh # install ↹lature itself cargo install --path tlature-tui # Keybinds In the TUI, press ? to see the keybinds for a given view/mode # Opening a project A few example project files are available. To open one, run the following command from inside the project directory. For example, to open ave-maria , run: git clone https://git.sr.ht/~jaxter184/tlature-examples cd tlature-examples tlature tlature-examples/ave-maria alternatively, to run it without the TUI, you can use the -r flag to run in REPL mode. tlature -r -e start tlature-examples/ave-maria # bug reports and feature requests See the todo board # style guide alphanumeric form: tlature pronounced ['tæ.blə.tʃɚ] short for "tabulatorlature" pronounced ['tæ.bjə.leɪ.tɚ.lə.tʃɚ] stylized as "↹lature" alternately, "<tab>lature" or "\tlature" never written as "tablature" or "tabulature" including when writing alt text (use "tlature" instead)
2026-01-13T09:30:13
https://sr.ht/~rezamahdi/sdir/
sdir: Directory hierarchy signature utility sourcehut Log in — Register ~rezamahdi / sdir summary source mailing list tickets Directory hierarchy signature utility f853db6 fix(src): fix typo in naming traverse files ~rezamahdi pushed to ~rezamahdi/sdir git 1 year, 11 months ago 959f1d7 feat(build): add mimalloc ~rezamahdi pushed to ~rezamahdi/sdir git 1 year, 11 months ago View project feed  RSS  Report abuse sdir - directory hierarchy signature utility -------------------------------------------- sdir is a utlity to generate a signature from a hierarchy of directory on filesystem to check it's consistency. It is based on Merkel tree. Installing ---------- To install sdir, `cd` to root source directory and as always do: ./configure make make install See `INSTALL` file for a complete installation procedure. Contribution ------------ To take participant in development of this project, clone the source code using git from source repository: git clone https://git.sr.ht/~rezamahdi/sdir Contributing ------------ Development of this project is drived by mailing list and git email workflow. Please send your patches to development mailing list address at ~rezamahdi/sdir@lists.sr.ht and report any bug to bug tracker in sourcehut website at https://todo.sr.ht/~rezamahdi/sdir. Links ----- - Project homepage: https://sr.ht/~rezamahdi/sdir - Repository: https://git.sr.ht/~rezamahdi/sdir - Mailing list: ~rezamahdi/sdir@lists.sr.ht - Issue tracker: https://todo.sr.ht/~rezamahdi/sdir In case of sensitive bugs like security vulnerabilities, please contact rmahdi.develop@gmail.com directly instead of using issue tracker. We value your effort to improve the security and privacy of this project! Licensing --------- The code in this project is licensed under GPLv3 license. See COPYING file for full license text.
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1/accounts/get
Method: accounts.get  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference Method: accounts.get Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag This document provides details on how to retrieve information about a specified AdMob publisher account using an HTTP GET request. The request requires a path parameter name which is the resource name of the publisher account. The request body must be empty. A successful response will contain an instance of PublisherAccount . The request requires specific OAuth scopes for authorization. HTTP request Path parameters Request body Response body Authorization scopes Examples Try it! Gets information about the specified AdMob publisher account. HTTP request GET https://admob.googleapis.com/v1/{name=accounts/*} The URL uses gRPC Transcoding syntax. Path parameters Parameters name string Resource name of the publisher account to retrieve. Example: accounts/pub-9876543210987654 Request body The request body must be empty. Response body If successful, the response body contains an instance of PublisherAccount . Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/admob.readonly https://www.googleapis.com/auth/admob.report For more information, see the OAuth 2.0 Overview . Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["This document outlines how to retrieve information about an AdMob publisher account. A `GET` request is sent to `https://admob.googleapis.com/v1/{name=accounts/*}`, with the account's resource name (e.g., `accounts/pub-9876543210987654`) specified as a path parameter. The request body must be empty. A successful response returns a `PublisherAccount` instance. Authorization requires either `admob.readonly` or `admob.report` OAuth scopes. The document includes examples and a \"Try it!\" feature.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.apps/list
Method: accounts.apps.list  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference Method: accounts.apps.list Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag The page details how to list apps for a specific AdMob account using an HTTP GET request. The API call requires a parent path parameter indicating the account resource name. Optional query parameters like pageSize and pageToken can be used to control the number of results and paginate through them. The request body must be empty, and the response body contains a list of apps and an optional nextPageToken for pagination. Authorization is required via specific OAuth scopes, such as admob.monetization or admob.readonly . HTTP request Path parameters Query parameters Request body Response body JSON representation Authorization scopes Examples Try it! List the apps under the specified AdMob account. HTTP request GET https://admob.googleapis.com/v1beta/{parent=accounts/*}/apps The URL uses gRPC Transcoding syntax. Path parameters Parameters parent string Required. Resource name of the account to list apps for. Example: accounts/pub-9876543210987654 Query parameters Parameters pageSize integer The maximum number of apps to return. If unspecified or 0, at most 10,000 apps will be returned. The maximum value is 20,000; values above 20,000 will be coerced to 20,000. pageToken string The value returned by the last ListAppsResponse ; indicates that this is a continuation of a prior apps.list call, and that the system should return the next page of data. Request body The request body must be empty. Response body Response for the apps list request. If successful, the response body contains data with the following structure: JSON representation { "apps" : [ { object ( App ) } ] , "nextPageToken" : string } Fields apps[] object ( App ) The resulting apps for the requested account. nextPageToken string If not empty, indicates that there may be more apps for the request; this value should be passed in a new ListAppsRequest . Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/admob.monetization https://www.googleapis.com/auth/admob.readonly For more information, see the OAuth 2.0 Overview . Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["This API call lists apps under a specified AdMob account. It uses a `GET` request to `https://admob.googleapis.com/v1beta/{parent=accounts/*}/apps`. The `parent` path parameter (e.g., `accounts/pub-9876543210987654`) is required. Optional query parameters `pageSize` (max 20,000) and `pageToken` are used for pagination. The request body is empty. The response includes a list of apps and an optional `nextPageToken` for subsequent requests and requires specific authorization scopes.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://git.sr.ht/~bptato/chawan/commit/cc23eb0
~bptato/chawan: container, lrewrap: clean up/optimize - sourcehut git sourcehut Log in — Register ~bptato / chawan summary tree log refs cc23eb023f513acd7cf6ae2e973a7fc561941cda — bptato 6 days ago 443d228 container, lrewrap: clean up/optimize patch browse .tar.gz 7 files changed, 193 insertions(+), 211 deletions(-) M adapter/protocol/man.nim M src/local/container.nim M src/local/pager.nim M src/local/select.nim M src/server/buffer.nim M src/utils/builtinre.nim M src/utils/lrewrap.nim M adapter/protocol/man.nim => adapter/protocol/man.nim +66 -98 @@ 100 ,10 100 ,6 @@ proc isCommand(paths: seq[string]; name, s: string): bool = return true false - iterator myCaptures(res: var RegexResult; i: int): RegexCapture = - for cap in res.captures.mitems: - yield cap[i] - proc readErrorMsg(efile: AChaFile; line: var string): string = var msg = "" while true: @@ 120 ,32 116 ,12 @@ proc readErrorMsg(efile: AChaFile; line: var string): string = break move(msg) - type RegexType = enum - rtLink = r"(https?|ftp)://[\w/~.-]+" - rtMail = r"(mailto:|)(\w[\w.-]*@[\w-]+\.[\w.-]*)" - rtFile = r"(file:)?[/~][\w/~.-]+[\w/]" - rtInclude = r"#include(</?[bu]>|\s)*<([\w./-]+)" - rtMan = r"(</?[bu]>)*(\w[\w.-]*)(</?[bu]>)*(\([0-9nlx]\w*\))" - - proc updateOffsets(map: var array[RegexType, RegexResult]; len: int; - cap: RegexCapture; ourType: RegexType) = - let offset = len - (cap.e - cap.s) - var first = true - for res in map.toOpenArray(ourType, RegexType.high).mitems: - var toDel: seq[int] = @[] - for i, icap in res.captures.mpairs: - var overlap = false - for it in icap.mitems: - if not first and it.e > cap.s and it.s < cap.e: - overlap = true - elif it.s > cap.s: - it.s += offset - it.e += offset - if overlap: - toDel.add(i) - for i in toDel.ritems: - res.captures.delete(i) - first = false + const RegexStr = + r"((https?|ftp)://[\w/~.-]+)|" & # link, 1 + r"((mailto:|)(\w[\w.-]*@[\w-]+\.[\w.-]*))|" & # mail, 3 + r"((file:)?[/~][\w/~.-]+[\w/])|" & # file, 6 + r"(#include(</?[bu]>|\s)*<([\w./-]+))|" & # include, 8 + r"((</?[bu]>)*(\w[\w.-]*)(</?[bu]>)*(\([0-9nlx]\w*\)))" # man, 11-15 proc processManpage(ofile, efile: AChaFile; header, keyword: string): Opt[void] = @@ 173 ,11 149 ,10 @@ proc processManpage(ofile, efile: AChaFile; header, keyword: string): ?stdout.writeLine(line.processBackspace()) var wasBlank = false # regexes partially from w3mman2html - var reMap = array[RegexType, Regex].default - for t, re in reMap.mpairs: - if not ($t).compileRegex({LRE_FLAG_GLOBAL, LRE_FLAG_UNICODE}, re): - discard cast[ChaFile](stderr).writeLine($t & ": " & re.bytecode) - quit(1) + var re: Regex + if not RegexStr.compileRegex({LRE_FLAG_GLOBAL, LRE_FLAG_UNICODE}, re): + discard cast[ChaFile](stderr).writeLine(re.bytecode) + quit(1) var paths: seq[string] = @[] var ignoreMan = keyword.toUpperAscii() if ignoreMan == keyword or keyword.len == 1: @@ 194 ,70 169 ,63 @@ proc processManpage(ofile, efile: AChaFile; header, keyword: string): wasBlank = true else: wasBlank = false - var line = line.processBackspace() - var res = array[RegexType, RegexResult].default - for t, re in reMap.mpairs: - res[t] = re.exec(line) - for cap in res[rtLink].myCaptures(0): - let s = line[cap.s..<cap.e] - let link = "<a href='" & s & "'>" & s & "</a>" - line[cap.s..<cap.e] = link - res.updateOffsets(link.len, cap, rtLink) - for cap in res[rtMail].myCaptures(2): - let s = line[cap.s..<cap.e] - let link = "<a href='mailto:" & s & "'>" & s & "</a>" - line[cap.s..<cap.e] = link - res.updateOffsets(link.len, cap, rtMail) - for cap in res[rtFile].myCaptures(0): - let s = line[cap.s..<cap.e] - let target = s.expandTilde() - if not fileExists(target) and not symlinkExists(target) and - not dirExists(target): - continue - let name = target.afterLast('/') - let link = if paths.isCommand(name, target): - "<a href='man:" & name & "'>" & s & "</a>" - else: - "<a href='file:" & target & "'>" & s & "</a>" - line[cap.s..<cap.e] = link - res.updateOffsets(link.len, cap, rtFile) - for cap in res[rtInclude].myCaptures(2): - let s = line[cap.s..<cap.e] - const includePaths = [ - "/usr/include/", - "/usr/local/include/", - "/usr/X11R6/include/", - "/usr/X11/include/", - "/usr/X/include/", - "/usr/include/X11/" - ] - for path in includePaths: - let file = path & s - if fileExists(file): - let link = "<a href='file:" & file & "'>" & s & "</a>" - line[cap.s..<cap.e] = link - res.updateOffsets(link.len, cap, rtInclude) - break + let line = line.processBackspace() + var oline = "" var offset = 0 - for cap in res[rtMan].captures.mitems: - cap[0].s += offset - cap[0].e += offset - var manCap = cap[2] - manCap.s += offset - manCap.e += offset - var secCap = cap[4] - secCap.s += offset - secCap.e += offset - let man = line[manCap.s..<manCap.e] - # ignore footers like MYPAGE(1) - # (just to be safe, we also check if it's in paths too) - if man == ignoreMan and not paths.isCommand(man.afterLast('/'), man): - continue - let cat = man & line[secCap.s..<secCap.e] - let link = "<a href='man:" & cat & "'>" & man & "</a>" - line[manCap.s..<manCap.e] = link - offset += link.len - (manCap.e - manCap.s) - ?stdout.writeLine(line) + var ctx = initContext(re) + for ret in ctx.exec(line): + if ret != 1: + oline &= line.substr(offset) + break + let cap = ctx.cap(0) + oline &= line[offset..<cap.s] + offset = cap.e + var s = line[cap.s..<cap.e] + if ctx.cap(1).s >= 0: # link + oline &= "<a href='" & s & "'>" & s & "</a>" + elif ctx.cap(3).s >= 0: # mail + oline &= "<a href='mailto:" & s & "'>" & s & "</a>" + elif ctx.cap(6).s >= 0: # file + let target = s.expandTilde() + if not fileExists(target) and not symlinkExists(target) and + not dirExists(target): + oline &= s + continue + let name = target.afterLast('/') + if paths.isCommand(name, target): + oline &= "<a href='man:" & name & "'>" & s & "</a>" + else: + oline &= "<a href='file:" & target & "'>" & s & "</a>" + elif ctx.cap(8).s >= 0: # include + const includePaths = [ + "/usr/include/", + "/usr/local/include/", + "/usr/X11R6/include/", + "/usr/X11/include/", + "/usr/X/include/", + "/usr/include/X11/" + ] + block notFound: + for path in includePaths: + let file = path & s + if fileExists(file): + oline &= "<a href='file:" & file & "'>" & s & "</a>" + break notFound + oline &= s + elif ctx.cap(11).s >= 0: + let manCap = ctx.cap(13) + let sectionCap = ctx.cap(15) + let man = line[manCap.s..<manCap.e] + # ignore footers like MYPAGE(1) + # (just to be safe, we also check if it's in paths too) + if man == ignoreMan and not paths.isCommand(man.afterLast('/'), man): + oline &= s + continue + let section = line[sectionCap.s..<sectionCap.e] + let cat = man & section + s.setLen(s.len - section.len) + oline &= "<a href='man:" & cat & "'>" & s & "</a>" & section + ?stdout.writeLine(oline) ok() proc myOpen(cmd: string): Opt[tuple[ofile, efile: AChaFile]] = M src/local/container.nim => src/local/container.nim +21 -25 @@ 37 ,7 37 ,6 @@ import types/url import types/winattrs import utils/builtinre import utils/lrewrap - import utils/luwrap import utils/strwidth import utils/twtstr @@ 209 ,7 208 ,6 @@ type mainConfig: Config images*: seq[PosBitmap] imageCache: ImageCache - luctx: LUContext relist: BuiltinRegexList refreshHeader: string tab*: Tab @@ 235 ,10 233 ,10 @@ proc sendCursorPosition*(container: Container): EmptyPromise {.discardable.} proc loaded(container: Container) proc newContainer*(config: BufferConfig; loaderConfig: LoaderClientConfig; - url: URL; request: Request; luctx: LUContext; attrs: WindowAttributes; - title: string; redirectDepth: int; flags: set[ContainerFlag]; - contentType: string; charsetStack: seq[Charset]; cacheId: int; - mainConfig: Config; tab: Tab; relist: BuiltinRegexList): Container = + url: URL; request: Request; attrs: WindowAttributes; title: string; + redirectDepth: int; flags: set[ContainerFlag]; contentType: string; + charsetStack: seq[Charset]; cacheId: int; mainConfig: Config; tab: Tab; + relist: BuiltinRegexList): Container = let host = request.url.host let loadinfo = (if host != "": "Connecting to " & host @@ 260 ,7 258 ,6 @@ proc newContainer*(config: BufferConfig; loaderConfig: LoaderClientConfig; phandle: ProcessHandle(process: -1, refc: 1), mainConfig: mainConfig, flags: flags, - luctx: luctx, redraw: true, lastPeek: HoverType.high, tab: tab, @@ 777 ,16 774 ,20 @@ proc setCursorXY*(container: Container; x, y: int; refresh = true) {.jsfunc.} = proc setAbsoluteCursorXY*(container: Container; x, y: int; refresh = true) = container.setCursorXY(container.fromx + x, container.fromy + y, refresh) + proc cursorLineEnd(container: Container) {.jsfunc.} = + container.setCursorX(container.currentLineWidth() - 1) + proc cursorLineTextStart(container: Container) {.jsfunc.} = - if container.numLines == 0: return - var x = 0 - for u in container.currentLine.points: - if not container.luctx.isWhiteSpace(u): - break - x += u.width() - if x == 0: - dec x - container.setCursorX(x) + if container.numLines == 0 or not container.lineLoaded(container.cursory): + return + let cap = container.relist.a[brTextStart].matchFirst(container.currentLine) + if cap.s >= 0: + var x = container.currentLine.width(0, cap.s) + if x == 0: + dec x + container.setCursorX(x) + else: + container.cursorLineEnd() # zb proc lowerPage(container: Container; n = 0) {.jsfunc.} = @@ 880 ,9 881 ,6 @@ proc cursorRight(container: Container; n = 1) {.jsfunc.} = proc cursorLineBegin(container: Container) {.jsfunc.} = container.setCursorX(-1) - proc cursorLineEnd(container: Container) {.jsfunc.} = - container.setCursorX(container.currentLineWidth() - 1) - proc pageDown(container: Container; n = 1) {.jsfunc.} = container.setFromY(container.fromy + container.height * n) container.setCursorY(container.cursory + container.height * n) @@ 1305 ,9 1303 ,8 @@ proc findPrevMatch(container: Container; regex: Regex; x, y: int; wrap: bool; let s = container.getLineStr(y) if b < 0: b = s.len - let res = regex.exec(s, 0, b) - if res.captures.len > 0: - let cap = res.captures[^1][0] + let cap = regex.matchLast(s.toOpenArray(0, b - 1)) + if cap.s >= 0: let x = s.width(0, cap.s) let w = s.toOpenArray(cap.s, cap.e - 1).width() dec n @@ 1337 ,9 1334 ,8 @@ proc findNextMatch(container: Container; regex: Regex; x, y: int; wrap: bool; if not container.lineLoaded(y): return container.iface.findNextMatch(regex, x, y, endy, wrap, n) let s = container.getLineStr(y) - let res = regex.exec(s, b, s.len) - if res.captures.len > 0: - let cap = res.captures[0][0] + let cap = regex.matchFirst(s, b) + if cap.s >= 0: let x = s.width(0, cap.s) let w = s.toOpenArray(cap.s, cap.e - 1).width() dec n M src/local/pager.nim => src/local/pager.nim +0 -1 @@ 1627 ,7 1627 ,6 @@ proc newContainer(pager: Pager; bufferConfig: BufferConfig; loaderConfig, url, request, - pager.luctx, pager.term.attrs, title, redirectDepth, M src/local/select.nim => src/local/select.nim +4 -4 @@ 179 ,7 179 ,7 @@ proc cursorBottom(select: Select) {.jsfunc.} = proc cursorNextMatch*(select: Select; regex: Regex; wrap: bool) = var j = -1 for i in select.cursory + 1 ..< select.options.len: - if regex.exec(select.options[i].s).success: + if regex.match(select.options[i].s): j = i break if j != -1: @@ 187 ,7 187 ,7 @@ proc cursorNextMatch*(select: Select; regex: Regex; wrap: bool) = select.queueDraw() elif wrap: for i in 0 ..< select.cursory: - if regex.exec(select.options[i].s).success: + if regex.match(select.options[i].s): j = i break if j != -1: @@ 197 ,7 197 ,7 @@ proc cursorNextMatch*(select: Select; regex: Regex; wrap: bool) = proc cursorPrevMatch*(select: Select; regex: Regex; wrap: bool) = var j = -1 for i in countdown(select.cursory - 1, 0): - if regex.exec(select.options[i].s).success: + if regex.match(select.options[i].s): j = i break if j != -1: @@ 205 ,7 205 ,7 @@ proc cursorPrevMatch*(select: Select; regex: Regex; wrap: bool) = select.queueDraw() elif wrap: for i in countdown(select.options.high, select.cursory): - if regex.exec(select.options[i].s).success: + if regex.match(select.options[i].s): j = i break if j != -1: M src/server/buffer.nim => src/server/buffer.nim +28 -40 @@ 669 ,9 669 ,8 @@ proc findPrevMatch*(bc: BufferContext; handle: PagerHandle; regex: Regex; let s = bc.lines[y].str if b < 0: b = s.len - let res = regex.exec(s, 0, b) - if res.captures.len > 0: - let cap = res.captures[^1][0] + let cap = regex.matchLast(s.toOpenArray(0, b - 1), 0) + if cap.s >= 0: let x = s.width(0, cap.s) let w = s.toOpenArray(cap.s, cap.e - 1).width() dec n @@ 698 ,9 697 ,8 @@ proc findNextMatch*(bc: BufferContext; handle: PagerHandle; regex: Regex; break y = 0 let s = bc.lines[y].str - let res = regex.exec(s, b, s.len) - if res.captures.len > 0: - let cap = res.captures[0][0] + let cap = regex.matchFirst(s, b) + if cap.s >= 0: let x = s.width(0, cap.s) let w = s.toOpenArray(cap.s, cap.e - 1).width() dec n @@ 1880 ,40 1878 ,30 @@ proc markURL*(bc: BufferContext; handle: PagerHandle; schemes: seq[string]) for it in toRemove: it.remove() for text in texts: - var res = regex.exec(text.data.s) - if res.success: - var offset = 0 - var data = "" - var j = 0 - for cap in res.captures.mitems: - let capLen = cap[0].e - cap[0].s - while j < cap[0].s: - case (let c = text.data[j]; c) - of '<': - data &= "<" - offset += 3 - of '>': - data &= ">" - offset += 3 - of '\'': - data &= "'" - offset += 5 - of '"': - data &= """ - offset += 5 - of '&': - data &= "&" - offset += 4 - else: - data &= c - inc j - cap[0].s += offset - cap[0].e += offset - let s = text.data.s[j ..< j + capLen] - let news = "<a href=\"" & s & "\">" & s.htmlEscape() & "</a>" - data &= news - j += cap[0].e - cap[0].s - offset += news.len - (cap[0].e - cap[0].s) + var data = "" + var j = 0 + for cap in regex.matchCap(text.data.s, 0): + let capLen = cap.e - cap.s + while j < cap.s: + case (let c = text.data[j]; c) + of '<': + data &= "<" + of '>': + data &= ">" + of '\'': + data &= "'" + of '"': + data &= """ + of '&': + data &= "&" + else: + data &= c + inc j + let s = text.data.s[j ..< j + capLen] + let news = "<a href=\"" & s & "\">" & s.htmlEscape() & "</a>" + data &= news + j += capLen + if data.len > 0: while j < text.data.len: case (let c = text.data[j]; c) of '<': data &= "<" M src/utils/builtinre.nim => src/utils/builtinre.nim +1 -0 @@ 23 ,6 23 ,7 @@ type # other alpha & non-alpha (symbol) r"(\w(?!\w))|([^\p{L}\p{Z}](?![^\p{L}\p{Z}]))" brBigWordEnd = r"\S(?!\S)" + brTextStart = r"\S" BuiltinRegexList* = ref object a*: array[BuiltinRegex, Regex] M src/utils/lrewrap.nim => src/utils/lrewrap.nim +73 -43 @@ 9 ,10 9 ,6 @@ type RegexCapture* = tuple # start, end, index s, e: int - RegexResult* = object - success*: bool - captures*: seq[seq[RegexCapture]] - proc compileRegex*(buf: string; flags: LREFlags; regex: var Regex): bool = ## Compile a regular expression using QuickJS's libregexp library. ## If the result is false, regex.bytecode stores the error message emitted @@ 36 ,53 32 ,87 @@ proc compileRegex*(buf: string; flags: LREFlags; regex: var Regex): bool = regex = Regex(bytecode: move(byteSeq)) true - proc exec*(regex: Regex; s: openArray[char]; start = 0; length = -1; - nocaps = false): RegexResult = - ## execute the regex found in `bytecode`. - let length = if length == -1: - s.len - else: - length - assert start >= 0 - if start >= length or length > int(cint.high): - return RegexResult() - let L = cint(length) + type ExecContext* = object + bytecode: ptr uint8 + tmp: seq[ptr uint8] + base: uint + + proc initContext*(regex: Regex): ExecContext = let bytecode = cast[ptr uint8](unsafeAddr regex.bytecode[0]) let allocCount = lre_get_alloc_count(bytecode) - var capture = newSeq[ptr uint8](allocCount) - let captureCount = lre_get_capture_count(bytecode) - let pcapture = if capture.len > 0: addr capture[0] else: nil - let base = cast[ptr uint8](unsafeAddr s[0]) - let flags = lre_get_flags(bytecode).toLREFlags - var start = cint(start) - result = RegexResult() - while true: - let ret = lre_exec(pcapture, bytecode, base, start, L, 3, nil) - if ret != 1: #TODO error handling? (-1) - break - result.success = true - if captureCount == 0 or nocaps: - break - var caps: seq[RegexCapture] = @[] - let cstrAddress = cast[int](base) - let ps = start - start = cast[cint](cast[int](capture[1]) - cstrAddress) - for i in 0 ..< captureCount: - let s = cast[int](capture[i * 2]) - cstrAddress - let e = cast[int](capture[i * 2 + 1]) - cstrAddress - caps.add((s, e)) - result.captures.add(caps) - if LRE_FLAG_GLOBAL notin flags: + ExecContext( + bytecode: bytecode, + tmp: newSeq[ptr uint8](int(allocCount)) + ) + + template ncaps(ctx: ExecContext): cint = + lre_get_capture_count(ctx.bytecode) + + proc cap*(ctx: ExecContext; i: int): tuple[s, e: int] = + assert i < int(ctx.ncaps) + let sp = ctx.tmp[i * 2] + let ep = ctx.tmp[i * 2 + 1] + if sp == nil or ep == nil: + return (-1, -1) + let s = cast[int](cast[uint](sp) - ctx.base) + let e = cast[int](cast[uint](ep) - ctx.base) + return (s, e) + + iterator caps*(ctx: ExecContext): tuple[s, e: int] = + for i in 0 ..< ctx.ncaps: + yield ctx.cap(i) + + iterator exec*(ctx: var ExecContext; s: openArray[char]; start = 0): cint = + let L = cint(min(int(cint.high), s.len)) + let pcapture = if ctx.tmp.len > 0: addr ctx.tmp[0] else: nil + let base = if s.len > 0: cast[ptr uint8](unsafeAddr s[0]) else: nil + let flags = lre_get_flags(ctx.bytecode).toLREFlags() + ctx.base = cast[uint](base) + var start = cint(min(int(cint.high), start)) + while start < L: + let ret = lre_exec(pcapture, ctx.bytecode, base, start, L, 3, nil) + yield ret + if ret != 1 or LRE_FLAG_GLOBAL notin flags: break - if ps == start: # avoid infinite loop: skip the first UTF-8 char. + let pstart = start + start = cast[cint](ctx.cap(0).e) + if pstart == start: # avoid infinite loop: skip the first UTF-8 char. inc start while start < s.len and uint8(s[start]) in 0x80u8 .. 0xBFu8: inc start - if start >= length: + + iterator matchCap*(regex: Regex; s: openArray[char]; cap: int; start = 0): + tuple[s, e: int] = + var ctx = initContext(regex) + for ret in ctx.exec(s, start): + if ret != 1: + break + yield ctx.cap(cap) + + proc match*(regex: Regex; s: openArray[char]; start = 0): bool = + var ctx = initContext(regex) + for ret in ctx.exec(s, start): + return ret == 1 + false + + proc matchFirst*(regex: Regex; str: openArray[char]; start = 0): + tuple[s, e: int] = + var ctx = initContext(regex) + for ret in ctx.exec(str, start): + if ret != 1: break + return ctx.cap(0) + return (-1, -1) - proc match*(regex: Regex; str: string; start = 0; length = str.len): bool = - return regex.exec(str, start, length, nocaps = true).success + proc matchLast*(regex: Regex; str: openArray[char]; start = 0): + tuple[s, e: int] = + var ctx = initContext(regex) + var res = (-1, -1) + for ret in ctx.exec(str, start): + if ret != 1: + break + res = ctx.cap(0) + res proc countBackslashes(buf: string; i: int): int = var j = 0
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.mediationReport
REST Resource: accounts.mediationReport  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference REST Resource: accounts.mediationReport Stay organized with collections Save and categorize content based on your preferences. Resource Methods Resource There is no persistent data associated with this resource. Methods generate Generates an AdMob Mediation report based on the provided report specification. Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["The content outlines a resource without persistent data that can generate an AdMob Mediation report. The primary action is utilizing the `generate` method, accessible via the `/admob/api/reference/rest/v1beta/accounts.mediationReport/generate` endpoint. This method requires a report specification to produce the desired AdMob Mediation report. No data is stored related to this resource.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://sr.ht/~kerrick/ratatui_ruby/
ratatui_ruby: 💎 Unofficial Ruby wrapper for Ratatui 👨‍🍳🐀. sourcehut Log in — Register ~kerrick / ratatui_ruby summary sources mailing lists tickets 💎 Unofficial Ruby wrapper for Ratatui 👨‍🍳🐀. dd29325 docs: add message processing concept guide ~kerrick pushed to ~kerrick/ratatui_ruby-tea git 50 seconds ago 10f700e feat: add Command.http for native HTTP requests ~kerrick pushed to ~kerrick/ratatui_ruby-tea git 7 minutes ago View project feed  RSS  Report abuse # The RatatuiRuby Project Ruby deserves world-class terminal user interfaces. TUI developers deserve a world-class language. RatatuiRuby is a RubyGem built on Ratatui, a leading TUI library written in Rust. You get native performance with the joy of Ruby. # Quick Links # The Ecosystem RatatuiRuby: Core engine • Tea: MVU architecture • Kit: Component architecture (Planned) • DSL: Glimmer syntax (Planned) • Framework: Omakase framework (Planned) • UI: Polished widgets (Planned) • UI Pro: More polished widgets (Planned) # For App Developers Get Started: Quickstart • Examples ⸺ Stay Informed: Announce List • FAQ ⸺ Reach Out: Discuss List • Bug Tracker # For Contributors Get Started: Contributing Guide • Code of Conduct ⸺ Stay Informed: Announce List • Project History ⸺ Reach Out: Development List • Bug Tracker # The Roadmap (Draft) Version: v0.8.2 This document defines the architecture, philosophy, and roadmap of the RatatuiRuby ecosystem. It covers planned layers in depth. The Engine and the Functional Runtime (Tea) exist today. For a quick start with The Engine, see the Quickstart guide . # The Big Tent Developers disagree about state management. Some prefer immutable data and pure functions. Others prefer encapsulated objects with internal state. Both approaches work. Neither is wrong. RatatuiRuby supports both. The ecosystem shares a single high-performance engine. Above it, developers choose their path: The Functional Path (Tea): Immutable state, unidirectional data flow, pure functions. The Object Path (Kit): Retained-mode components, encapsulated state, hit testing, focus management. These paths are mutually exclusive at the runtime level. A Tea app cannot mount Kit components. A Kit app cannot run a Tea loop. Choose your architecture when you start your project. Rendering logic, however, crosses the boundary. Both paths share Engine-level custom widgets : any object that implements render(area) works in Tea views, Kit components, and raw Engine code. Kit components can also call Tea view functions via the Adapter pattern, described below . You pick the paradigm. RatatuiRuby provides the tools. # The Ecosystem Layer Gem Role Engine 💎 ratatui_ruby Stateless rendering, layout, events Functional Runtime ☕ ratatui_ruby-tea The Elm Architecture for Ruby Component Kit 🧰 ratatui_ruby-kit Retained-mode components (think React or Qt) Syntax DSL ✨ glimmer-dsl-ratatui Declarative UI descriptions ( Glimmer ) Framework 🍣 ratatui_ruby-framework Conventions, scaffolding, integrations UI 🧱 ratatui_ruby-ui Polished widgets (free) UI Pro 🏰 ratatui_ruby-ui-pro More polished widgets (paid) The Engine is the foundation. Above it, choose Tea or Kit. The DSL and Framework layers build on your chosen path. # Non-Runtime Gems and Repositories These gems and repositories provide build tooling, examples, and project infrastructure. Audience Gem Role Contributors 🛠️ ratatui_ruby-devtools Rake tasks, linters, build tooling App Developers 📖 ratatui_ruby-examples Full application examples App Developers 🌐 ratatui_ruby-website Project website (web UI) App Developers 🐚 ratatui_ruby-sshsite Project website (SSH TUI) # Chapter 1: The Engine The Engine is the foundation. It wraps Rust's ratatui crate via native extension. It handles rendering, layout, and input. The Engine follows the immediate-mode paradigm. Each frame, your code describes the entire UI from scratch. The Engine draws it and immediately forgets it, holding no application state between renders. This differs from retained-mode toolkits like Qt or GTK, which maintain a persistent object graph. # The Frame API You control where widgets appear. The Engine does not guess. RatatuiRuby . run do | tui | tui . draw do | frame | sidebar_area , content_area = tui . layout_split ( frame . area , direction : :horizontal , constraints : [ tui . constraint_length ( 20 ), tui . constraint_fill ( 1 ) ] ) frame . render_widget ( sidebar , sidebar_area ) frame . render_widget ( content , content_area ) end end You calculate layout, draw to specific areas, and cache those areas for hit testing. This pattern eliminates layout duplication bugs. Any Ruby object that implements render(area) works as a widget. You are not limited to the widgets RatatuiRuby ships. # From sig/ratatui_ruby/frame.rbs interface _CustomWidget def render: (Rect area) -> Array[Draw::StringCmd | Draw::CellCmd] end # Core Primitives The Engine exposes what upper layers need: poll_event(timeout:) — Input polling with configurable blocking: nil — Block forever until input arrives 0.0 — Non-blocking check, returns immediately > 0.0 — Wait up to n seconds (default: 0.016 for 60 FPS) get_cell_at(x, y) — Buffer inspection for testing Text measurement — Unicode-aware width calculation Resize events — Terminal dimension changes # Thread Safety All drawing happens on the main thread. The Engine is safe to use from multiple threads, but rendering is serialized. # Chapter 2: The Functional Path — Tea ratatui_ruby-tea implements the Model-View-Update (MVU) pattern, also known as The Elm Architecture. React with Redux follows the same structure. The pattern targets applications where predictable state matters: dashboards, installers, wizards. # Philosophy: View as a Function of State The runtime separates logic from side effects: Model: A single frozen object containing all application state. Update: A pure function: (Message, Model) -> [Model, Command] View: A pure function: (Model) -> Widget Tree Command: Work to do later (HTTP requests, shell commands, timers). Runs off the main thread. The main thread handles input, update, and rendering. Worker threads handle commands. This separation keeps the UI responsive. # Callable Objects The runtime requires no base classes or inheritance. It accepts anything responding to #call : # Draft API. Subject to change. RatatuiRuby :: TEA . run ( model : { count : 0 }, update : -> ( msg , model ) { ... }, view : -> ( model ) { ... }, init : Command . http ( 'https://api.example.com/data' ) # Optional: run on startup ) Procs, lambdas, and service objects all work. # App Startup The init: parameter runs a command at startup. Fetch initial data, start timers, or trigger other side effects. Without it, the runtime starts idle. # Ractor Safety The runtime enforces immutability now. In debug mode (and therefore in automated tests), it validates that models and messages are Ractor-shareable via Ractor.shareable? . Pass a mutable object, and it raises an error. Production skips this check for performance. This prepares your code for Ruby 4.0 Ractors . When threads become true parallelism, your application upgrades without changes. Write thread-safe code today; upgrade transparently tomorrow. # Batteries Included The runtime ships with commands using only the standard library: Command.system(shell, tag) — Run shell commands (via Open3 ); produces [tag, {stdout:, stderr:, status:}] Command.wait(seconds, tag) — One-shot timer; sleeps, then produces [tag, elapsed_time] Command.tick(interval, tag) — Recurring timer; the runtime re-dispatches automatically when update returns Command.tick again Command.http(method, url, tag) — Basic HTTP requests (via Net::HTTP ); produces [tag, {status:, body:, headers:}] Command.batch([...]) — Run multiple commands in parallel; equivalent to returning an Array of commands Command.sequence([...]) — Run commands in serial order; each waits for the previous to complete Command.exit — Terminate the application Commands produce messages , not callbacks. The tag argument names the message so your update function can pattern-match on it: # Draft API. Subject to change. def update ( msg , model ) case msg in [ :got_files , { stdout :, status : 0 } ] [ model . with ( files : stdout . lines ), nil ] in [ :got_files , { stderr :, status :} ] [ model . with ( error : "Exit #{ status } : #{ stderr } " ), nil ] else [ model , nil ] end end # In your update, return the command: [ model . with ( loading : true ), Command . system ( "ls -la" , :got_files ) ] This design keeps all logic in update and ensures messages are Ractor-shareable (no Proc captures). Command.system , Command.wait , Command.tick , and Command.http run in the worker pool. Command.exit and Command.batch are handled by the runtime directly—they never spawn threads. Command.exit is a sentinel value : the runtime detects it before dispatching and breaks the loop immediately. These cover common needs. Specialized clients (WebSockets, gRPC) can be wrapped using the same pattern. [!NOTE] Coming Soon: ratatui_ruby-commands-websocket will wrap faye-websocket as a reference implementation showing how to build custom commands with proper cancellation handling. # Fractal Architecture Large applications decompose into bags . A bag is a module containing Model , INITIAL , UPDATE , and VIEW constants. Bags compose: parent bags delegate to child bags. Break your model into sub-models in a Fractal Architecture . Delegate update calls to child bag reducers. Use Command.map to route responses: # Draft API. Subject to change. child_command . map { | child_message | ParentMessage . new ( child_message ) } This prevents monolithic case statements. # Subscriptions: A Deliberate Deviation In Elm and Bubble Tea, subscriptions are long-lived listeners (timers, sockets, resize events) managed by a dedicated runtime system. The runtime diffs subscriptions each frame and spawns or kills listeners as needed. RatatuiRuby takes a different approach. RatatuiRuby subscriptions are recursive commands. A timer is a command that sleeps, returns a message, and gets re-dispatched by the update function when it handles that message. To cancel a timer, the update function simply stops returning the command. This design requires no separate subscription API and no lifecycle management. This choice serves three purposes. First, it follows Ruby idioms: commands are Procs, batches are Arrays, and subscriptions are loops. Second, it adds zero API surface because the recursive pattern reuses existing primitives. Third, it simplifies the runtime by eliminating subscription diffing logic and letting the update function control continuation directly. # Chapter 3: The Object Path — Kit ratatui_ruby-kit provides retained-mode components. The pattern will feel familiar if you have used Flutter's StatefulWidget, SwiftUI's @State, Vue's Options API, React class components, Qt widgets, or Cocoa's NSView. Objects persist between frames, hold their own state, and handle their own events. This is not MVC. A Kit component combines what MVC would separate into View and Controller. The component renders itself and handles input. There is no external Model layer—components hold local UI state like focus, hover, and input buffers. Domain data and persistence come from the Framework layer above. # Philosophy: Encapsulated State Components persist between frames: a button remembers whether it is hovered, an input remembers its text, and a list remembers its scroll position. The Engine is immediate-mode . The Kit bridges the gap. # The Component Lifecycle Components implement the _Component interface. Rather than requiring a layer supertype, Kit provides granular mixins for common functionality. Include what you need, or use Kit::Component for all defaults. # Mixins Mixin Purpose Kit::KeyboardInteractive Navigation mechanics: focusable? , focus_boundary? , tab_index Kit::MouseInteractive Hit testing: area accessor, contains_point?(x, y) Kit::Lifecycle Mount/unmount hooks with empty defaults Kit::Visual tui accessor (set by Kit from RatatuiRuby.run ), render helpers Kit::Stateful Interaction state: state , is_focused? , hovered? , pressed? , disabled? Kit::Component All of the above for convenience # Draft API. Subject to change. class MyButton include Kit :: Component # or pick individual mixins def initialize ( ** options ) # options receives configuration (label:, on_submit:, etc.) # When using Glimmer DSL, these become props. Otherwise, pass directly. # Kit::Visual provides `tui` accessor (set automatically). @label = options [ :label ] end def mount # Called once when the component is added to the tree. # Acquire resources, subscribe to data sources, start timers. end # You define styles declaratively. The Kit applies them automatically. styles do state :focused , fg : :yellow , bold : true state :hovered , fg : :blue state :normal , fg : :white end def render ( frame , area ) # See "Rendering and Composition" below for details. end def handle_event ( event ) # Truthy = handled (stop propagation), falsey = not handled (propagate to parent). return unless event . key? && event . code == "enter" :submitted end # Mixins provide defaults; override as needed: # def focusable? = false # true for interactive components (buttons, inputs) # def focus_boundary? = false # true for modals or panel containers # def tab_index = 0 # nil/0: tree order, -1/:skip: skip Tab, 1+: explicit end # Draft APIs. Subject to change. # What developers implement: interface _Component def mount: () -> void # Called once when added to tree def render: (RatatuiRuby::Frame frame, RatatuiRuby::Rect area) -> void # Draw yourself def handle_event: (RatatuiRuby::Event event) -> Object? # falsey = propagate, truthy = handled def focusable?: () -> bool # Override if interactive def focus_boundary?: () -> bool # Override for modals/panels def tab_index: () -> (Integer | :skip) # Override for explicit order end # What Kit::Component mixins provide: module Kit::Component def tui: () -> RatatuiRuby::TUI def area: () -> RatatuiRuby::Rect def is_focused?: () -> bool def hovered?: () -> bool def pressed?: () -> bool def state: () -> Symbol def current_style: () -> untyped # Resolves from styles block def contains_point?: (Integer x, Integer y) -> bool # And maybe more... end The Kit calls mount once when a component enters the tree. It calls render every frame and handle_event when input arrives. Components own their rendering and event handling. They do not know about databases, network requests, or domain logic. Pass these as options during construction (e.g., db: , http_client: ), use a container component that handles I/O and passes results down as props, or use the Framework . The handle_event return value controls propagation: a falsey value ( nil or false ) means the event was not handled and should propagate to the parent. Any truthy value means the event was handled and propagation stops. Kit only checks truthiness—it ignores the actual value. Return a symbol ( :consumed , :submitted ) for simplicity, or return a domain object if the parent needs richer information. The focusable? and focus_boundary? methods control keyboard navigation. Components default to focusable? = false . Interactive components (buttons, inputs) override to return true . Panels and modals return focus_boundary? = true and Tab cycles only among their focusable children. To move between panels, the parent handles keyboard shortcuts (e.g., 1 – 4 ) and programmatically shifts focus. The tab_index method controls Tab order within a boundary. Components with positive values come first (sorted numerically), then components with 0 or nil follow tree order. A value of -1 or :skip means the component is focusable programmatically but Tab skips it. This mirrors HTML's tabindex attribute. The styles block defines appearance for each interaction state. The Kit resolves current_style based on the component's state—focused, hovered, pressed, or normal. This works like CSS pseudo-classes ( :focus , :hover ) but in Ruby. Define styles declaratively; the Kit applies them automatically. # Rendering and Composition A leaf component renders widgets directly via frame.render_widget(widget, area) . A parent component must also render its children. Three approaches are under consideration: Option A: Unified frame.render The Engine's Frame object provides a unified render method. It duck-types to distinguish widgets (single-parameter render(area) ) from components (two-parameter render(frame, area) ). The distinction happens in native code (Rust)—no Ruby wrapper allocation. The exact mechanism (arity check, marker, etc.) is an implementation detail. class MyParagraph include Kit :: Component def initialize ( ** options ) @text = options [ :text ] end def focusable? = false # Labels don't receive focus def render ( frame ) frame . render ( tui . paragraph ( text : @text )) end end class MyButton include Kit :: Component def initialize ( ** options ) @label = options [ :label ] end def focusable? = true # Buttons receive focus styles do state :pressed , bg : :white , fg : :black state :focused , fg : :yellow , bold : true state :normal , fg : :white end def render ( frame ) frame . render ( tui . paragraph ( text : @label , style : current_style )) end def handle_event ( event ) return unless event . key? && event . code == "enter" :submitted end end class MyDialog include Kit :: Component def initialize ( ** options ) @message = MyParagraph . new ( text : options [ :message ] ) @ok = MyButton . new ( label : "OK" ) @cancel = MyButton . new ( label : "Cancel" ) end def focus_boundary? = true # Tab cycles within dialog def render ( frame , area ) top , bottom = tui . split ( area , :vertical , 70 , 30 ) left , right = tui . split ( bottom , :horizontal , 50 , 50 ) frame . render ( @message , top ) frame . render ( @ok , left ) frame . render ( @cancel , right ) end end Pros: Kit sees every component render, enabling lifecycle hooks Uniform API for widgets and components Kit can track the component tree automatically Option B: Direct call Parent components call child.render(frame, area) directly. class MyParagraph include Kit :: Component def initialize ( ** options ) @text = options [ :text ] end def focusable? = false # Labels don't receive focus def render ( frame , area ) frame . render_widget ( tui . paragraph ( text : @text ), area ) end end class MyButton include Kit :: Component def initialize ( ** options ) @label = options [ :label ] end def focusable? = true # Buttons receive focus styles do state :pressed , bg : :white , fg : :black state :focused , fg : :yellow , bold : true state :normal , fg : :white end def render ( frame , area ) frame . render_widget ( tui . paragraph ( text : @label , style : current_style ), area ) end def handle_event ( event ) return unless event . key? && event . code == "enter" :submitted end end class MyDialog include Kit :: Component def initialize ( ** options ) @message = MyParagraph . new ( text : options [ :message ] ) @ok = MyButton . new ( label : "OK" ) @cancel = MyButton . new ( label : "Cancel" ) end def focus_boundary? = true # Tab cycles within dialog def render ( frame , area ) top , bottom = tui . split ( area , :vertical , 70 , 30 ) left , right = tui . split ( bottom , :horizontal , 50 , 50 ) @message . render ( frame , top ) @ok . render ( frame , left ) @cancel . render ( frame , right ) end end Pros: No abstraction overhead Complete control over render order Simple and predictable Design rationale: Each component is responsible for rendering itself into a specific area provided by its parent. A parent component does not need to know how a child draws itself; it only needs to allocate space for it. This encapsulation enables large teams to work on complex UIs without understanding the entire component tree. Option C: Declarative children Components declare children; the Kit renders them automatically. class MyParagraph include Kit :: Component def initialize ( ** options ) @text = options [ :text ] end def focusable? = false # Labels don't receive focus def render ( frame , area ) frame . render_widget ( tui . paragraph ( text : @text ), area ) end end class MyButton include Kit :: Component def initialize ( ** options ) @label = options [ :label ] end def focusable? = true # Buttons receive focus styles do state :pressed , bg : :white , fg : :black state :focused , fg : :yellow , bold : true state :normal , fg : :white end def render ( frame , area ) frame . render_widget ( tui . paragraph ( text : @label , style : current_style ), area ) end def handle_event ( event ) return unless event . key? && event . code == "enter" :submitted end end class MyDialog include Kit :: Component def focus_boundary? = true # Tab cycles within dialog def children layout :vertical , [ 70 , 30 ] do child MyParagraph , text : @message layout :horizontal , [ 50 , 50 ] do child MyButton , label : "OK" child MyButton , label : "Cancel" end end end # No render method needed—Kit calls children automatically end Pros: Minimal boilerplate Kit owns the tree entirely Cons: Natural fit for Glimmer DSL # Hit Testing The Kit walks the component tree each frame, passing area to each component's render method. Components cache this via the area accessor. When a mouse event arrives, they check area.contains?(x, y) . The Kit handles traversal; the component handles the geometry check. # Focus Management The Kit tracks focus through a KeyboardFocus singleton. Pressing Tab cycles through focusable components within the current focus boundary, and keyboard events route to whichever component currently has focus. When no component has focus, events propagate to the root component for global shortcuts. The Kit module exposes convenience methods that delegate to Kit::KeyboardFocus.instance : # Draft API. Subject to change. module Kit def self.focus: () -> KeyboardFocus def self.focused: () -> _Component? class KeyboardFocus include Singleton def focused: () -> _Component? # Returns the focused component, or nil if none def set: (_Component component) -> void # Programmatically move focus to a component def blur: () -> void # Clear focus (events go to root) def next: () -> void # Move to next focusable component within boundary def prev: () -> void # Move to previous component within boundary def enter_boundary: (_Component container) -> void # Enter a focus boundary (for modals or panels) def exit_boundary: () -> void # Exit the current boundary, restore previous focus end end Components call Kit.focus.set(button) to move focus programmatically. Tests stub Kit.focus to inject a mock. Focus boundaries work for both modals and panels. When a modal opens, the parent calls Kit.focus.enter_boundary(modal) so Tab stays within the modal. When the modal closes, it calls exit_boundary to restore focus. For multi-panel layouts, the root component handles shortcuts like 1 – 4 and calls enter_boundary(panel) to switch contexts. # Symbolic Signals Components return semantic symbols instead of booleans: :consumed — Event handled, stop propagation :submitted — Form submitted :copy_requested — Copy to clipboard The container interprets these signals to coordinate cross-component effects. # Chapter 4: The Syntax glimmer-dsl-ratatui is a declarative DSL. Like HTML, SwiftUI, Jetpack Compose, or XAML, it describes UI structure visually rather than imperatively constructing widgets. # Unidirectional (Tea) In Tea, the DSL generates view trees: # Draft API. Subject to change. vertical_layout { paragraph ( text : model . title ) list ( items : model . items ) } Data binding is read-only. The model is immutable. # Data Binding Operators Glimmer provides two binding operators. Their behavior differs between Tea and Kit because the underlying state management differs. The <= operator (read binding): Binds a widget property to a data source. In both Tea and Kit, this displays the current value. The <=> operator (bidirectional binding): Binds a widget property for both reading and writing. This is where Tea and Kit diverge. # In Tea: Sugar for Dispatch Tea views are pure functions of immutable state. The <=> operator cannot mutate the model. Instead, Glimmer translates it into message dispatch: user input emits a Message::FieldUpdated message with the field name and new value. Your update function handles it like any other message, preserving unidirectional flow. The syntax looks like bidirectional binding. The semantics remain functional. This is "Sugar for Dispatch." # Draft API. Subject to change. # In your view: input ( value : <=> [ model , :name ] ) # When the user types, Glimmer emits: # Message::FieldUpdated.new(:name, new_value) # Your update function handles it: def update ( message , model ) case message when Message :: FieldUpdated [ model . with ( message . field => message . value ), nil ] end end # In Kit: Direct Mutation Kit components own their state. The <=> operator mutates the component's attribute directly, and changes sync automatically. This is standard Glimmer behavior: # Draft API. Subject to change. # In your component: input ( value : <=> [ self , :text ] ) # When the user types, @text updates automatically. # The component handles everything internally. # Chapter 5: The Framework ratatui_ruby-framework is the omakase framework for terminals. It provides conventions, scaffolding, and integrations. # Structure app/ models/ # ActiveRecord or Data objects views/ # Glimmer DSL files components/ # Kit components config/ database.yml # Generators # Conceptual sketch. CLI not yet designed. tuis new framework my_app tuis generate component sidebar # MVC for Terminals The Framework adds the Model layer that Kit lacks. This completes the MVC pattern familiar to Rails developers: Model — ActiveRecord or Data objects in app/models/ . Domain data and persistence. View — Glimmer DSL files in app/views/ . Declarative UI descriptions. Controller — Kit components in app/components/ . Handle input, update models, trigger re-renders. Kit alone is a component architecture. Kit plus Framework is MVC. # Reusing Tea Views in Kit The Framework is built on Kit. However, you may want to reuse rendering logic written for Tea within a Kit component. The Adapter pattern makes this possible without mixing runtimes. A Tea view function is a pure function: it takes an immutable model and returns a widget tree. You can call this function from a Kit component by adapting your mutable ActiveRecord model into a frozen snapshot. The Kit component handles events and mutations as usual; the Tea view function handles only the rendering. # Draft API. Subject to change. class DashboardWidget < Kit :: Component def initialize ( record ) @record = record # ActiveRecord, mutable end def render ( tui , frame , area ) # Adapt mutable state to frozen Tea model tea_model = RecordAdapter . to_tea_model ( @record ) # Call Tea view as a pure function widget_tree = MyTeaView . call ( tea_model ) # Render the returned tree frame . render_widget ( widget_tree , area ) end def handle_event ( event ) @record . update! ( count : @record . count + 1 ) if event == :increment :consumed end end The Adapter creates an immutable snapshot from mutable state, forming a clear boundary between the two paradigms. This approach shares rendering logic without embedding a Tea runtime inside a Kit application. # Chapter 6: Licensing Layer License Engine LGPL-3.0-or-later Tea LGPL-3.0-or-later Kit LGPL-3.0-or-later DSL LGPL-3.0-or-later Framework LGPL-3.0-or-later UI AGPL-3.0-or-later UI Pro Commercial only Commercial licenses are available for all layers. Contact sales@kerricklong.com for pricing. Documentation is CC-BY-SA-4.0 . Code snippets in documentation are MIT-0 (no attribution required). Non-runtime gems provide build tooling, examples, and project infrastructure. They use AGPL-3.0-or-later : Gem Purpose ratatui_ruby-devtools Build tooling ratatui_ruby-examples Example applications ratatui_ruby-website Project website (HTTPS) ratatui_ruby-sshsite Project website (SSH) # Chapter 7: Roadmap RatatuiRuby follows an overlapping-serial development model. Each layer validates the one below, and higher layers begin during the beta phase of their foundation to battle-test the API before v1.0.0. Phase Deliverable Status 1 Engine ( ratatui_ruby ) v0.9.0 Alpha 2 Functional Runtime ( ratatui_ruby-tea ) v0.2.0 Pre-Release 3 Component Kit ( ratatui_ruby-kit ) Planned 4 Syntax DSL ( glimmer-dsl-ratatui ) Planned 5 Framework ( ratatui_ruby-framework ) Planned 6 Premium Components Future Development proceeds inside-out: core first, then runtime, then syntax. Work on Tea has begun to help validate the Engine. Work on the Component Kit will begin once Tea reaches stability, ensuring the foundation is complete and ready before any layer reaches v1.0.0. # Competitive Positioning RatatuiRuby respects the TUI ecosystem. Each tool has strengths. Approach Strengths Trade-offs CharmRuby Elm Architecture, Go ecosystem Two runtimes (Ruby + Go) Rust (Ratatui) Maximum performance Steeper learning curve for UI Go (Bubble Tea) Fast compilation, great tooling Separate language RatatuiRuby Ruby expressiveness, Rust performance Rust build dependency RatatuiRuby does not denigrate competitors. It differentiates on architecture. # Governance Performance matters: if a feature slows the render loop, it does not go in. Ergonomics matter: if an API feels clunky, it gets rewritten. Kindness matters: contributors are partners, and users are colleagues. # Documentation All public code follows the Alexandrian Form , or an inline version: Context, Problem, Solution. The documentation explains why , not just what . # Versioning Semantic versioning. RatatuiRuby breaks APIs only for correctness (or upstream alignment in the core gem). Deprecation warnings precede removal. # Resources Source Code Documentation: stable • trunk Troubleshooting & FAQ Contributing Guide Code of Conduct Branching and Releases Documentation Guide Governance Project History Bug Tracker Mailing Lists: Discussion • Development • Announcements
2026-01-13T09:30:13
https://git.sr.ht/~sheepy/cabbage
~sheepy/cabbage - (3DS/Rust) stupid library for boilerplate - sourcehut git sourcehut Log in — Register ~sheepy / cabbage summary tree log refs (3DS/Rust) stupid library for boilerplate 19072857 — sheepy0125 4 months ago better panic handler c5a5c01f — sheepy0125 8 months ago add panic handler & readme 5c4508a0 — sheepy0125 10 months ago refactor - remove ui stuff refs main browse  log  clone read-only https://git.sr.ht/~sheepy/cabbage read/write git@git.sr.ht:~sheepy/cabbage Clone repo to your account You can also use your local clone with git send-email . # cabbage A silly 3DS homebrew helper library for boilerplate application state. Features: [x] Wrapped framebuffer/screen targets [x] ( embedded-graphics feature) embedded-graphics software rendering target [x] Application state wrapper & boilerplate [x] ctru::Handles wrapper [x] Error handling and console logging [x] Custom panic handler
2026-01-13T09:30:13
https://git.sr.ht/~sheepy/lodestone
~sheepy/lodestone - a silly 3DS gps homebrew software - sourcehut git sourcehut Log in — Register ~sheepy / lodestone summary tree log refs a silly 3DS gps homebrew software b34a2df0 — sheepy0125 1 year, 30 days ago use postcard instead of ron and transmit more data ab27fc61 — sheepy0125 1 year, 30 days ago display position b9a0f3c7 — sheepy0125 1 year, 1 month ago esp data transfer thru wifi station refs main browse  log  clone read-only https://git.sr.ht/~sheepy/lodestone read/write git@git.sr.ht:~sheepy/lodestone Clone repo to your account You can also use your local clone with git send-email .
2026-01-13T09:30:13
https://git.sr.ht/~sheepy/keybale
~sheepy/keybale - (3DS/Rust) silly c-pad operated keyboard PoC inspired/copied from thumbkey - sourcehut git sourcehut Log in — Register ~sheepy / keybale summary tree log refs (3DS/Rust) silly c-pad operated keyboard PoC inspired/copied from thumbkey df9893fb — sheepy0125 10 months ago guh f1e30ad3 — sheepy0125 10 months ago fix video link? c49ea2af — sheepy0125 10 months ago new showcase (w/ bigger text) refs main browse  log  clone read-only https://git.sr.ht/~sheepy/keybale read/write git@git.sr.ht:~sheepy/keybale Clone repo to your account You can also use your local clone with git send-email . # keybale A proof-of-concept keyboard based on ThumbKey for the 3DS. The circlepad is split into 9 sections that map to the nine keys on the default Thumbkey layout. When the A button is held, these nine sections instead map to the delta of the nine different swipe directions for the selected key. For instance, if we have +-------+ | x _ _ | | _ + _ | | _ _ _ | +-------+ where x is the circlepad's position when A was pressed down, and + was its position when A was released, that'd be swiping to the bottom right of the top left key. in the case of the default layout, that'd be a w. # Demonstration it's actually really annoying to use. https://cinderblock.moe/unlisted/misc/keybale-showcase.mp4
2026-01-13T09:30:13
https://git.sr.ht/~bzg/worg/tree/master/item/code/scripts
~bzg/worg (master): code/scripts/ - sourcehut git sourcehut Log in — Register ~bzg / worg summary tree log refs worg / code /scripts d--------- Tree Log Permalink 658ef0ad — Ihor Radchenko Revert "org-web-social.org: Avoid javascript" a day ago .. -rw-r--r-- .gitignore 13 bytes -rw-r--r-- StartOzServer.oz 7.4 KiB -rwxr-xr-x dir2org.zsh 1013 bytes -rw-r--r-- ditaa.jar 181.7 KiB -rwxr-xr-x org2hpda 4.0 KiB d--------- staticmathjax/ -rw-r--r-- x11idle.c 951 bytes
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.adSources/list
Method: accounts.adSources.list  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference Method: accounts.adSources.list Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag The "List ad sources" method is used to retrieve a collection of ad sources. The request uses a GET HTTP method and requires the parent account ID in the path parameter. Optional query parameters include pageSize for limiting the number of results and pageToken for pagination. The response body contains a list of adSources objects and a nextPageToken if more pages are available. Authorization requires specific OAuth scopes like admob.readonly or admob.report . HTTP request Path parameters Query parameters Request body Response body JSON representation Authorization scopes AdSource JSON representation Examples Try it! List the ad sources. HTTP request GET https://admob.googleapis.com/v1beta/{parent=accounts/*}/adSources The URL uses gRPC Transcoding syntax. Path parameters Parameters parent string Required. The parent which owns this collection of ad sources. Format: accounts/{publisherId} Query parameters Parameters pageSize integer The maximum number of ad sources to return. If unspecified or 0, at most 10,000 ad sources will be returned. The maximum value is 20,000; values above 10,000 will be coerced to 20,000. pageToken string A page token, received from a previous adSources.list call. Provide this to retrieve the subsequent page. Request body The request body must be empty. Response body Response for the ListAdSourcesRequest. If successful, the response body contains data with the following structure: JSON representation { "adSources" : [ { object ( AdSource ) } ] , "nextPageToken" : string } Fields adSources[] object ( AdSource ) The ad sources. nextPageToken string Used to set the pageToken in the ListAdSourcesRequest to retrieve the next page. If this field is omitted, there are no subsequent pages. Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/admob.readonly https://www.googleapis.com/auth/admob.report For more information, see the OAuth 2.0 Overview . AdSource Definition of a mediation ad source. JSON representation { "name" : string , "adSourceId" : string , "title" : string } Fields name string Resource name of this ad source. Format is: accounts/{publisherId}/adSources/{adSourceId} adSourceId string ID of this ad source. title string Display name of this ad source. Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["This document details how to list ad sources using the AdMob API. To retrieve ad sources, send a `GET` request to `https://admob.googleapis.com/v1beta/{parent=accounts/*}/adSources`, specifying the account ID in the `parent` path parameter. Optional query parameters include `pageSize` (maximum ad sources returned) and `pageToken` (for pagination). The request body must be empty. The response includes a list of `adSources` with their `name`, `adSourceId`, and `title` and a `nextPageToken` for further pages.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.adUnits.adUnitMappings/list
Method: accounts.adUnits.adUnitMappings.list  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference Method: accounts.adUnits.adUnitMappings.list Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag This method lists ad unit mappings for a specified AdMob account and ad unit using a GET HTTP request. Access to this method is limited and requires contacting an account manager for access if a 403 error occurs. The request requires a parent path parameter specifying the account and ad unit, and optionally accepts pageSize , pageToken , and filter as query parameters. The request body must be empty, and the successful response body contains a list of adUnitMappings and a nextPageToken . This method requires either the https://www.googleapis.com/auth/admob.monetization or https://www.googleapis.com/auth/admob.readonly OAuth scope. HTTP request Path parameters Query parameters Request body Response body JSON representation Authorization scopes Examples Try it! List ad unit mappings under the specified AdMob account and ad unit. This method has limited access. If you see a 403 permission denied error, please reach out to your account manager for access. HTTP request GET https://admob.googleapis.com/v1beta/{parent=accounts/*/adUnits/*}/adUnitMappings The URL uses gRPC Transcoding syntax. Path parameters Parameters parent string Required. The parent which owns this collection of ad unit mappings. Format: accounts/{publisherId}/adUnits/{adUnitId} Query parameters Parameters pageSize integer The maximum number of ad unit mappings to return. If unspecified or 0, at most 10,000 ad unit mappings will be returned. The maximum value is 20,000; values above 20,000 will be coerced to 20,000. pageToken string A page token, received from a previous adUnitMappings.list call. Provide this to retrieve the subsequent page. filter string The filter string that uses EBNF grammar syntax . Possible field to filter by is: "DISPLAY_NAME" Possible filter function is: IN : Used to filter fields that represent a singleton including "DISPLAY_NAME". The filter functions can be added together using AND . OR functionality is not supported. Example: filter: IN(DISPLAY_NAME, "Test Ad Unit Mapping 1", "Test Ad Unit Mapping 2") Request body The request body must be empty. Response body Response for the ListAdUnitMappingsRequest. If successful, the response body contains data with the following structure: JSON representation { "adUnitMappings" : [ { object ( AdUnitMapping ) } ] , "nextPageToken" : string } Fields adUnitMappings[] object ( AdUnitMapping ) The ad unit mappings from the specified account and ad unit. nextPageToken string Used to set the pageToken in the ListAdUnitMappingsRequest to retrieve the next page. If this field is omitted, there are no subsequent pages. Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/admob.monetization https://www.googleapis.com/auth/admob.readonly For more information, see the OAuth 2.0 Overview . Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["This API lists ad unit mappings under a specified AdMob account and ad unit using a `GET` request to a specific URL. The `parent` path parameter is mandatory, defining the account and ad unit. Optional query parameters `pageSize`, `pageToken`, and `filter` allow for result pagination and filtering. The request body must be empty, while the response includes an array of `adUnitMappings` and an optional `nextPageToken` for pagination. Access requires specific OAuth scopes, potentially needing account manager assistance.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://git.sr.ht/~bptato/chawan/commit/8bb4d84
~bptato/chawan: Precompile JS commands - sourcehut git sourcehut Log in — Register ~bptato / chawan summary tree log refs 8bb4d84274b5f02bfd79fd5eba228cab69d4fff4 — bptato 4 days ago e58b32c master Precompile JS commands The bytecode seems roughly equivalent to the source in size, provided we strip it. cha itself got larger because of WriteObject/ReadObject, but sooner or later we'll have to pull those in for structuredClone anyway. patch browse .tar.gz 11 files changed, 763 insertions(+), 663 deletions(-) M Makefile M res/config.toml M src/config/config.nim A src/init.js M src/io/chafile.nim D src/local/client.nim M src/local/pager.nim M src/main.nim M src/server/buffer.nim M src/server/forkserver.nim M src/server/loader.nim M Makefile => Makefile +7 -2 @@ 71 ,6 71 ,7 @@ tools_bin = urlenc nc protocols = $(protocols_bin) $(ssl_link) converters = $(converters_bin) $(tohtml_link) tools = $(tools_bin) urldec + scripts = init.jsb ifeq ($(STATIC_LINK),1) LDFLAGS += -static @@ 106 ,6 107 ,7 @@ binaries = $(OUTDIR_BIN)/cha $(OUTDIR_BIN)/mancha binaries += $(foreach bin,$(protocols),$(OUTDIR_CGI_BIN)/$(bin)) binaries += $(foreach bin,$(converters),$(OUTDIR_LIBEXEC)/$(bin)) binaries += $(foreach bin,$(tools),$(OUTDIR_LIBEXEC)/$(bin)) + binaries += $(foreach bin,$(scripts),$(OUTDIR_LIBEXEC)/$(bin)) .PHONY: all all: $(binaries) @@ 220 ,6 222 ,9 @@ $(OUTDIR_LIBEXEC)/%: adapter/tools/%.nim adapter/nim.cfg $(OUTDIR_LIBEXEC)/urldec: $(OUTDIR_LIBEXEC)/urlenc (cd "$(OUTDIR_LIBEXEC)" && ln -sf urlenc urldec) + $(OUTDIR_LIBEXEC)/%.jsb: src/%.js $(OUTDIR_BIN)/cha + $(OUTDIR_BIN)/cha -B $< $@ + doc/%.1: doc/%.md md2man ./md2man $< > $@~ mv $@~ $@ @@ 261 ,7 266 ,7 @@ install: for f in $(protocols_bin); do \ install -m755 "$(OUTDIR_CGI_BIN)/$$f" $(LIBEXECDIR_CHAWAN)/cgi-bin; \ done - for f in $(converters_bin) $(tools_bin); \ + for f in $(converters_bin) $(tools_bin) $(scripts); \ do install -m755 "$(OUTDIR_LIBEXEC)/$$f" $(LIBEXECDIR_CHAWAN); \ done (cd $(LIBEXECDIR_CHAWAN) && ln -sf urlenc urldec) @@ 280 ,7 285 ,7 @@ uninstall: rm -f "$(DESTDIR)$(PREFIX)/bin/mancha" # intentionally not quoted for f in $(protocols); do rm -f $(LIBEXECDIR_CHAWAN)/cgi-bin/$$f; done - for f in $(converters) $(tools); do rm -f $(LIBEXECDIR_CHAWAN)/$$f; done + for f in $(converters) $(tools) $(scripts); do rm -f $(LIBEXECDIR_CHAWAN)/$$f; done # We only want to uninstall binaries that the main distribution # includes or has ever included, but not those that the user might have # added. Some of these cannot be directly derived from our variables: M res/config.toml => res/config.toml +2 -351 @@ 1 ,7 1 ,6 @@ # Warning: this is an internal resource file, *not* a template. - # Using it as your personal config.toml isn't recommended; if you still - # decide to do so, search for [cmd] and delete everything that comes after - # it or you'll get a million warnings on startup. + # Some more obscure options may be changed or removed in the future, so + # using this as your personal config.toml isn't recommended. [start] visual-home = "about:chawan" @@ 306 ,351 305 ,3 @@ M-c = 'toggleCommandMode' 'M-[B' = 'line.nextHist' 'M-[A' = 'line.prevHist' 'M-[C' = 'line.forward' - - # When adding new built-in commands, make sure it has an upper-case letter. - # To users: when adding new custom commands, put it in your own namespace, - # e.g. [cmd.me]. - [cmd] - quit = '() => quit()' - suspend = '() => suspend()' - copyURL = ''' - () => { - if (pager.clipboardWrite(pager.url)) - pager.alert("Copied URL to clipboard."); - else - pager.alert("Error; please install xsel or adjust external.copy-cmd"); - } - ''' - copyCursorLink = ''' - () => { - const link = pager.hoverLink; - if (!link) - pager.alert("Please move the cursor above a link and try again."); - else if (pager.clipboardWrite(link)) - pager.alert("Copied URL to clipboard."); - else - pager.alert("Error; please install xsel or adjust external.copy-cmd"); - } - ''' - copyCursorImage = ''' - () => { - const link = pager.hoverImage; - if (!link) - pager.alert("Please move the cursor above an image and try again."); - else if (pager.clipboardWrite(link)) - pager.alert("Copied URL to clipboard."); - else - pager.alert("Error; please install xsel or adjust external.copy-cmd"); - } - ''' - gotoClipboardURL = ''' - () => { - const s = pager.externCapture(config.external.pasteCmd); - if (s === null) - pager.alert("Error; please install xsel or adjust external.paste-cmd"); - else - pager.loadSubmit(s); - } - ''' - peek = '() => pager.alert(pager.url)' - peekCursor = 'n => pager.peekCursor(n)' - toggleWrap = ''' - () => { - config.search.wrap = !config.search.wrap; - pager.alert("Wrap search " + (config.search.wrap ? "on" : "off")); - } - ''' - dupeBuffer = '() => pager.dupeBuffer()' - load = '() => pager.load()' - loadCursor = '() => pager.load(pager.hoverLink || pager.hoverImage)' - loadEmpty = '() => pager.load("")' - webSearch = '() => pager.load("br:")' - addBookmark = '() => pager.gotoURL(`cgi-bin:chabookmark?url=${encodeURIComponent(pager.url)}&title=${encodeURIComponent(pager.title)}`)' - openBookmarks = '() => pager.gotoURL(`cgi-bin:chabookmark?action=view`, {history: false})' - openHistory = '() => pager.gotoURL(pager.getHistoryURL(), {contentType: `text/uri-list;title="History Page"`, history: false, charset: "utf-8"})' - reloadBuffer = '() => pager.reload()' - lineInfo = '() => pager.lineInfo()' - toggleSource = '() => pager.toggleSource()' - discardBuffer = '() => pager.discardBuffer()' - discardBufferPrev = '() => pager.discardBuffer(pager.buffer, "prev")' - discardBufferNext = '() => pager.discardBuffer(pager.buffer, "next")' - discardTree = '() => pager.discardTree()' - prevBuffer = '() => pager.prevBuffer()' - prevSiblingBuffer = '() => pager.prevSiblingBuffer()' - nextBuffer = '() => pager.nextBuffer()' - nextSiblingBuffer = '() => pager.nextSiblingBuffer()' - parentBuffer = '() => pager.parentBuffer()' - enterCommand = '() => pager.command()' - searchForward = '() => pager.searchForward()' - searchBackward = '() => pager.searchBackward()' - isearchForward = '() => pager.isearchForward()' - isearchBackward = '() => pager.isearchBackward()' - searchNext = 'n => pager.searchNext(n)' - searchPrev = 'n => pager.searchPrev(n)' - toggleCommandMode = ''' - () => { - if ((pager.commandMode = consoleBuffer != pager.buffer)) - console.show(); - else - console.hide(); - } - ''' - showFullAlert = '() => pager.showFullAlert()' - toggleLinkHints = ''' - async () => { - pager.markPos0(); - const urls = await pager.showLinkHints(); - if (urls.length == 0) { - pager.alert("No links on page"); - return; - } - const chars = config.input.linkHintChars; - function hint(n) { - let tmp = []; - for (n--; n >= 0; n = Math.floor(n / chars.length) - 1) - tmp.push(chars[n % chars.length]); - return tmp.reverse().join(""); - } - const map = {}; - let offset = Math.floor((urls.length + chars.length - 2) / (chars.length - 1)); - for (let i = 0, j = offset; i < urls.length; i++, j++) { - let h = hint(j); - let it = map; - for (let k = 0, L = h.length - 1; k < L; k++) - it = it[h[k]] ?? (it[h[k]] = {}); - urls[i].leaf = true; - it[h.at(-1)] = urls[i]; - } - let s = ""; - let it = map; - let alert = true; - while (it && !it.leaf) { - const c = await pager.askChar(s); - if (c == '\b' || c == '\x7f') { - if (s.length == 0) { - alert = false; - break; - } - s = s.substring(0, s.length - 1); - it = map; - for (const c2 of s) - it = it[c2]; - } else if (c == '\x03') { - alert = false; - break; - } else { - it = it[c]; - s += c; - } - } - pager.hideLinkHints(); - if (it?.leaf) { - pager.setCursorXY(it.x, it.y); - pager.markPos(); - } else if (alert) - pager.alert("No such hint"); - } - ''' - cursorLeft = 'n => pager.cursorLeft(n)' - cursorDown = 'n => pager.cursorDown(n)' - cursorUp = 'n => pager.cursorUp(n)' - cursorRight = 'n => pager.cursorRight(n)' - cursorLineBegin = '() => pager.cursorLineBegin()' - cursorLineTextStart = '() => pager.cursorLineTextStart()' - cursorLineEnd = '() => pager.cursorLineEnd()' - cursorNextWord = '() => pager.cursorNextWord()' - cursorNextViWord = '() => pager.cursorNextViWord()' - cursorNextBigWord = '() => pager.cursorNextBigWord()' - cursorWordBegin = '() => pager.cursorWordBegin()' - cursorViWordBegin = '() => pager.cursorViWordBegin()' - cursorBigWordBegin = '() => pager.cursorBigWordBegin()' - cursorWordEnd = '() => pager.cursorWordEnd()' - cursorViWordEnd = '() => pager.cursorViWordEnd()' - cursorBigWordEnd = '() => pager.cursorBigWordEnd()' - cursorPrevLink = 'n => pager.cursorPrevLink(n)' - cursorNextLink = 'n => pager.cursorNextLink(n)' - cursorPrevParagraph = 'n => pager.cursorPrevParagraph(n)' - cursorNextParagraph = 'n => pager.cursorNextParagraph(n)' - cursorTop = 'n => pager.cursorTop(n)' - cursorMiddle = '() => pager.cursorMiddle()' - cursorBottom = 'n => pager.cursorBottom(n)' - cursorLeftEdge = '() => pager.cursorLeftEdge()' - cursorMiddleColumn = '() => pager.cursorMiddleColumn()' - cursorRightEdge = '() => pager.cursorRightEdge()' - halfPageDown = 'n => pager.halfPageDown(n)' - halfPageUp = 'n => pager.halfPageUp(n)' - halfPageLeft = 'n => pager.halfPageLeft(n)' - halfPageRight = 'n => pager.halfPageRight(n)' - pageDown = 'n => pager.pageDown(n)' - pageUp = 'n => pager.pageUp(n)' - pageLeft = 'n => pager.pageLeft(n)' - pageRight = 'n => pager.pageRight(n)' - scrollDown = 'n => pager.scrollDown(n)' - scrollUp = 'n => pager.scrollUp(n)' - scrollLeft = 'n => pager.scrollLeft(n)' - scrollRight = 'n => pager.scrollRight(n)' - click = 'n => pager.click(n)' - rightClick = ''' - async () => { - if (!pager.menu) { - const canceled = await pager.contextMenu(); - if (!canceled) - pager.openMenu(); - } else - pager.closeMenu() - } - ''' - toggleMenu = '() => pager.menu ? pager.closeMenu() : pager.openMenu()' - viewImage = ''' - (_, save) => { - let contentType = null; - let url = null; - if (pager.hoverCachedImage) { - [url, contentType] = pager.hoverCachedImage.split(' '); - url = 'file:' + pager.getCacheFile(url, pager.buffer.process); - } else if (pager.hoverImage) - url = new Request(pager.hoverImage, {headers: {Accept: "*/*"}}); - if (url) - pager.gotoURL(url, {contentType: contentType, save: save}); - } - ''' - toggleImages = '() => pager.toggleImages()' - toggleScripting = ''' - () => { - const buffer = pager.buffer; - const buffer2 = pager.gotoURL(buffer.url, { - contentType: buffer.contentType, - history: buffer.history, - replace: buffer, - scripting: !buffer.scripting, - cookie: buffer.cookie - }); - if (buffer2) - buffer2.copyCursorPos(buffer) - } - ''' - toggleCookie = ''' - () => { - const buffer = pager.buffer; - pager.gotoURL(buffer.url, { - contentType: buffer.contentType, - history: buffer.history, - replace: buffer, - scripting: buffer.scripting, - cookie: !buffer.cookie - }); - if (buffer2) - buffer2.copyCursorPos(buffer) - } - ''' - markURL = '() => pager.markURL()' - redraw = '() => pager.redraw()' - reshape = '() => pager.reshape()' - cancel = '() => pager.cancel()' - # vi G - gotoLineOrEnd = 'n => n ? pager.gotoLine(n) : pager.cursorLastLine()' - # vim gg - gotoLineOrStart = 'n => n ? pager.gotoLine(n) : pager.cursorFirstLine()' - # vi | - gotoColumnOrBegin = 'n => n ? pager.setCursorXCenter(n - 1) : pager.cursorLineBegin()' - gotoColumnOrEnd = 'n => n ? pager.setCursorXCenter(n - 1) : pager.cursorLineEnd()' - # vi z. z^M z- - centerLineBegin = 'n => pager.centerLineBegin(n)' - raisePageBegin = 'n => pager.raisePageBegin(n)' - lowerPageBegin = 'n => pager.lowerPageBegin(n)' - # vi z+ z^ - nextPageBegin = 'n => pager.nextPageBegin(n)' - previousPageBegin = 'n => pager.previousPageBegin(n)' - # vim zz zb zt - centerLine = 'n => pager.centerLine(n)' - raisePage = 'n => pager.raisePage(n)' - lowerPage = 'n => pager.lowerPage(n)' - cursorToggleSelection = 'n => pager.cursorToggleSelection(n)' - selectOrCopy = ''' - n => { - if (pager.currentSelection) - cmd.buffer.copySelection(); - else - pager.cursorToggleSelection(n) - } - ''' - cursorToggleSelectionLine = 'n => pager.cursorToggleSelection(n, {selectionType: "line"})' - cursorToggleSelectionBlock = 'n => pager.cursorToggleSelection(n, {selectionType: "block"})' - sourceEdit = ''' - () => { - const url = pager.url; - pager.extern(pager.getEditorCommand(url.protocol == "file:" ? - decodeURIComponent(url.pathname) : - pager.cacheFile)); - } - ''' - saveLink = '() => pager.saveLink()' - saveSource = '() => pager.saveSource()' - saveImage = '() => cmd.buffer.viewImage(1, true);' - mark = ''' - async () => { - const c = await pager.askChar("m"); - if (c.charCodeAt() != 3) /* ctrl-c */ - pager.setMark(c); - } - ''' - gotoMark = ''' - async () => { - const c = await pager.askChar('`'); - if (c.charCodeAt() != 3) /* C-c */ - pager.gotoMark(c); - } - ''' - gotoMarkY = ''' - async () => { - const c = await pager.askChar('`'); - if (c.charCodeAt() != 3) /* C-c */ - pager.gotoMarkY(c); - } - ''' - copySelection = ''' - async () => { - if (!pager.currentSelection) { - feedNext(); - return; - } - const text = await pager.getSelectionText(pager.currentSelection); - const s = text.length != 1 ? "s" : ""; - if (pager.clipboardWrite(text)) - pager.alert(`Copied ${text.length} character${s}.`); - else - pager.alert("Error; please install xsel or adjust external.copy-cmd"); - pager.cursorToggleSelection(); - } - ''' - cursorNthLink = 'n => pager.cursorNthLink(n)' - cursorRevNthLink = 'n => pager.cursorRevNthLink(n)' - - [cmd.line] - submit = '() => line.submit()' - backspace = '() => line.backspace()' - delete = '() => line.delete()' - cancel = '() => line.cancel()' - prevWord = '() => line.prevWord()' - nextWord = '() => line.nextWord()' - backward = '() => line.backward()' - forward = '() => line.forward()' - clear = '() => line.clear()' - kill = '() => line.kill()' - clearWord = '() => line.clearWord()' - killWord = '() => line.killWord()' - begin = '() => line.begin()' - end = '() => line.end()' - escape = '() => line.escape()' - prevHist = '() => line.prevHist()' - nextHist = '() => line.nextHist()' - openEditor = ''' - () => { - const res = pager.openEditor(line.text); - if (res != null) { - line.end(); - line.clear(); - line.write(res); - } - } - ''' M src/config/config.nim => src/config/config.nim +79 -49 @@ 30 ,6 30 ,7 @@ import server/headers import types/cell import types/color import types/jscolor + import types/jsopt import types/opt import types/url import utils/lrewrap @@ 44 ,8 45 ,11 @@ type CodepointSet* = object s*: seq[uint32] - ActionMap = ref object - t: Table[string, string] + ActionMap* = ref object + init: seq[tuple[k, s: string]] + #TODO could use a sorted tuple[k: string; v: JSValue] instead + # (like in htmltokenizer) + t: Table[string, JSValue] FormRequestType* = enum frtHttp = "http" @@ 98 ,9 102 ,7 @@ type documentCharset* {.jsgetset.}: seq[Charset] CommandConfig = object - jsObj*: JSValue init*: seq[tuple[k, cmd: string]] # initial k/v map - map*: Table[string, JSValue] # qualified name -> function ExternalConfig = ref object tmpdir* {.jsgetset.}: ChaPathResolved @@ 175 ,6 177 ,7 @@ type Config* = ref object jsvfns*: seq[JSValueFunction] + feedNext*: JSValueFunction arraySeen*: TableRef[string, int] # table arrays seen dir* {.jsget.}: string dataDir* {.jsget.}: string @@ 226 ,15 229 ,21 @@ proc toJS*(ctx: JSContext; cookie: CookieMode): JSValue = proc toJS*(ctx: JSContext; p: ChaPathResolved): JSValue = ctx.toJS($p) - proc `[]=`(a: ActionMap; b: string; c: sink string) = + proc `[]=`(a: ActionMap; b: string; c: JSValue) = a.t[b] = c # Can't be lent string on 2.0.4 yet. - template `[]`*(a: ActionMap; b: string): string = + template `[]`(a: ActionMap; b: string): JSValueConst = a.t[b] - template getOrDefault(a: ActionMap; b: string): string = - a.t.getOrDefault(b) + template getOrDefault*(a: ActionMap; k: string): JSValueConst = + a.t.getOrDefault(k, JS_UNDEFINED) + + proc getActionPtr*(a: ActionMap; k: string): + ptr JSValue = + a.t.withValue(k, p): + return p + nil proc contains*(a: ActionMap; b: string): bool = return b in a.t @@ 283 ,20 292 ,40 @@ proc getRealKey(key: string): string = proc getter(ctx: JSContext; a: ActionMap; s: string): JSValue {.jsgetownprop.} = - a.t.withValue(s, p): - return ctx.toJS(p[]) - return JS_NULL + return JS_DupValue(ctx, a.getOrDefault(s)) + + proc evalCmdDecl(ctx: JSContext; s: string): JSValue = + if AllChars - AsciiAlphaNumeric - {'_', '$', '.'} notin s and + not s.startsWith("cmd."): + return ctx.compileScript("cmd." & s, "<command>") + return ctx.compileScript(s, "<command>") - proc setter(a: ActionMap; k, v: string) {.jssetprop.} = + proc setter(ctx: JSContext; a: ActionMap; k: string; val: JSValueConst): + Opt[void] {.jssetprop.} = let k = getRealKey(k) if k == "": - return - a[k] = v + return ok() + let val2 = if JS_IsFunction(ctx, val): + JS_DupValue(ctx, val) + else: + var s: string + ?ctx.fromJS(val, s) + ctx.evalCmdDecl(s) + if JS_IsException(val2): + return err() + let old = a.getOrDefault(k) + JS_FreeValue(ctx, JSValue(old)) + a.t[k] = val2 var teststr = k teststr.setLen(teststr.high) + let feedNext = ctx.compileScript("window.feedNext()", "<command>") for i in countdown(k.high, 0): - discard a.t.hasKeyOrPut(teststr, "window.feedNext()") + let dup = JS_DupValue(ctx, feedNext) + if a.t.hasKeyOrPut(teststr, dup): + JS_FreeValue(ctx, dup) teststr.setLen(i) + JS_FreeValue(ctx, feedNext) + ok() proc delete(a: ActionMap; k: string): bool {.jsdelprop.} = let k = getRealKey(k) @@ 403 ,6 432 ,10 @@ proc parseConfigValue(ctx: var ConfigParser; x: var Headers; v: TomlValue; proc parseConfigValue(ctx: var ConfigParser; x: var CodepointSet; v: TomlValue; k: string): Err[string] + proc freeValues*(ctx: JSContext; map: ActionMap) = + for val in map.t.values: + JS_FreeValue(ctx, val) + proc typeCheck(v: TomlValue; t: TomlValueType; k: string): Err[string] = if v.t != t: return err(k & ": invalid type (got " & $v.t & ", expected " & $t & ")") @@ 425 ,7 458 ,7 @@ proc parseConfigValue(ctx: var ConfigParser; x: var object; v: TomlValue; when x isnot typeof(Config()[]): let k = k & '.' for fk, fv in x.fieldPairs: - when fk notin ["jsvfns", "arraySeen", "dir", "dataDir"]: + when fk notin ["jsvfns", "arraySeen", "dir", "dataDir", "feedNext"]: const kebabk = camelToKebabCase(fk) var x: TomlValue if v.pop(kebabk, x): @@ 610 ,11 643 ,7 @@ proc parseConfigValue(ctx: var ConfigParser; x: var ActionMap; v: TomlValue; for kk, vv in v: ?typeCheck(vv, tvtString, k & "[" & kk & "]") let rk = getRealKey(kk) - var buf = "" - for c in rk.toOpenArray(0, rk.high - 1): - buf &= c - x[buf] = "window.feedNext()" - x[rk] = vv.s + x.init.add((rk, vv.s)) ok() proc parseConfigValue[T: enum](ctx: var ConfigParser; x: var T; v: TomlValue; @@ 868 ,12 897 ,6 @@ proc parseConfig*(config: Config; dir: string; buf: openArray[char]; return config.parseConfig(dir, toml.get, warnings, jsctx, builtin) return err("fatal error: failed to parse config\n" & toml.error) - template getNormalAction*(config: Config; s: string): string = - config.page.getOrDefault(s) - - template getLinedAction*(config: Config; s: string): string = - config.line.getOrDefault(s) - proc openConfig*(dir, dataDir: var string; override: Option[string]; warnings: var seq[string]): PosixStream = if override.isSome: @@ 906 ,27 929 ,33 @@ proc openConfig*(dir, dataDir: var string; override: Option[string]; dataDir = dir return newPosixStream(dir / "config.toml") + proc initActions(config: Config; ctx: JSContext; map: ActionMap): Err[string] = + for it in map.init: + var buf = "" + let feedNext = config.feedNext.val + for c in it.k.toOpenArray(0, it.k.high - 1): + buf &= c + let old = map.getOrDefault(buf) + JS_FreeValue(ctx, JSValue(old)) + map[buf] = JS_DupValue(ctx, feedNext) + let old = map.getOrDefault(it.k) + JS_FreeValue(ctx, JSValue(old)) + let val = ctx.evalCmdDecl(it.s) + if JS_IsException(val): + return err(ctx.getExceptionMsg()) + map[it.k] = val + map.init.setLen(0) + ok() + # called after parseConfig returns proc initCommands*(ctx: JSContext; config: Config): Err[string] = - let obj = JS_NewObject(ctx) + let global = JS_GetGlobalObject(ctx) + let obj = JS_GetPropertyStr(ctx, global, "cmd") + JS_FreeValue(ctx, global) if JS_IsException(obj): JS_FreeValue(ctx, obj) return err(ctx.getExceptionMsg()) - # backwards compat: cmd.pager and cmd.buffer used to be separate - case ctx.definePropertyE(obj, "buffer", JS_DupValue(ctx, obj)) - of dprException: - JS_FreeValue(ctx, obj) - return err(ctx.getExceptionMsg()) - else: discard - case ctx.definePropertyE(obj, "pager", JS_DupValue(ctx, obj)) - of dprException: - JS_FreeValue(ctx, obj) - return err(ctx.getExceptionMsg()) - else: discard for (k, cmd) in config.cmd.init.ritems: - if k in config.cmd.map: - # already in map; skip - continue var objIt = JS_DupValue(ctx, obj) let name = k.afterLast('.') if name.len < k.len: @@ 945 ,7 974 ,6 @@ proc initCommands*(ctx: JSContext; config: Config): Err[string] = JS_FreeValue(ctx, objIt) objIt = prop if cmd == "": - config.cmd.map[k] = JS_UNDEFINED continue let fun = ctx.eval(cmd, "<" & k & ">", JS_EVAL_TYPE_GLOBAL) if JS_IsException(fun): @@ 955 ,16 983 ,17 @@ proc initCommands*(ctx: JSContext; config: Config): Err[string] = JS_FreeValue(ctx, obj) JS_FreeValue(ctx, fun) return err(k & " is not a function") - case ctx.definePropertyE(objIt, name, JS_DupValue(ctx, fun)) + case ctx.definePropertyE(objIt, name, fun) of dprException: return err(ctx.getExceptionMsg()) else: discard - config.cmd.map[k] = fun JS_FreeValue(ctx, objIt) - config.cmd.jsObj = obj + JS_FreeValue(ctx, obj) config.cmd.init = @[] - ok() + ?config.initActions(ctx, config.page) + config.initActions(ctx, config.line) - proc newConfig*(): Config = + proc newConfig*(ctx: JSContext): Config = + let feedNext = ctx.compileScript("window.feedNext()", "<command>") Config( arraySeen: newTable[string, int](), page: ActionMap(), @@ 977 ,7 1006 ,8 @@ proc newConfig*(): Config = input: InputConfig(), display: DisplayConfig(), status: StatusConfig(), - buffer: BufferSectionConfig() + buffer: BufferSectionConfig(), + feedNext: JSValueFunction(val: feedNext) ) proc addConfigModule*(ctx: JSContext) = A src/init.js => src/init.js +325 -0 @@ 0 ,0 1 ,325 @@ + async function toggleLinkHints() { + pager.markPos0(); + const urls = await pager.showLinkHints(); + if (urls.length == 0) { + pager.alert("No links on page"); + return; + } + const chars = config.input.linkHintChars; + function hint(n) { + let tmp = []; + for (n--; n >= 0; n = Math.floor(n / chars.length) - 1) + tmp.push(chars[n % chars.length]); + return tmp.reverse().join(""); + } + const map = {}; + let offset = Math.floor((urls.length + chars.length - 2) / (chars.length - 1)); + for (let i = 0, j = offset; i < urls.length; i++, j++) { + let h = hint(j); + let it = map; + for (let k = 0, L = h.length - 1; k < L; k++) + it = it[h[k]] ?? (it[h[k]] = {}); + urls[i].leaf = true; + it[h.at(-1)] = urls[i]; + } + let s = ""; + let it = map; + let alert = true; + while (it && !it.leaf) { + const c = await pager.askChar(s); + if (c == '\b' || c == '\x7f') { + if (s.length == 0) { + alert = false; + break; + } + s = s.substring(0, s.length - 1); + it = map; + for (const c2 of s) + it = it[c2]; + } else if (c == '\x03') { + alert = false; + break; + } else { + it = it[c]; + s += c; + } + } + pager.hideLinkHints(); + if (it?.leaf) { + pager.setCursorXY(it.x, it.y); + pager.markPos(); + } else if (alert) + pager.alert("No such hint"); + } + + globalThis.cmd = { + quit: quit, + suspend: suspend, + copyURL: () => { + if (pager.clipboardWrite(pager.url)) + pager.alert("Copied URL to clipboard."); + else + pager.alert("Error; please install xsel or adjust external.copy-cmd"); + }, + copyCursorLink: () => { + const link = pager.hoverLink; + if (!link) + pager.alert("Please move the cursor above a link and try again."); + else if (pager.clipboardWrite(link)) + pager.alert("Copied URL to clipboard."); + else + pager.alert("Error; please install xsel or adjust external.copy-cmd"); + }, + copyCursorImage: () => { + const link = pager.hoverImage; + if (!link) + pager.alert("Please move the cursor above an image and try again."); + else if (pager.clipboardWrite(link)) + pager.alert("Copied URL to clipboard."); + else + pager.alert("Error; please install xsel or adjust external.copy-cmd"); + }, + gotoClipboardURL: () => { + const s = pager.externCapture(config.external.pasteCmd); + if (s === null) + pager.alert("Error; please install xsel or adjust external.paste-cmd"); + else + pager.loadSubmit(s); + }, + peek: () => pager.alert(pager.url), + peekCursor: n => pager.peekCursor(n), + toggleWrap: () => { + config.search.wrap = !config.search.wrap; + pager.alert("Wrap search " + (config.search.wrap ? "on" : "off")); + }, + dupeBuffer: () => pager.dupeBuffer(), + load: () => pager.load(), + loadCursor: () => pager.load(pager.hoverLink || pager.hoverImage), + loadEmpty: () => pager.load(""), + webSearch: () => pager.load("br:"), + addBookmark: () => { + const url = `cgi-bin:chabookmark?url=${encodeURIComponent(pager.url)}&title=${encodeURIComponent(pager.title)}`; + pager.gotoURL(url); + }, + openBookmarks: () => { + pager.gotoURL(`cgi-bin:chabookmark?action=view`, {history: false}); + }, + openHistory: () => { + pager.gotoURL(pager.getHistoryURL(), { + contentType: 'text/uri-list;title="History Page"', + history: false, + charset: "utf-8" + }); + }, + reloadBuffer: () => pager.reload(), + lineInfo: () => pager.lineInfo(), + toggleSource: () => pager.toggleSource(), + discardBuffer: () => pager.discardBuffer(), + discardBufferPrev: () => pager.discardBuffer(pager.buffer, "prev"), + discardBufferNext: () => pager.discardBuffer(pager.buffer, "next"), + discardTree: () => pager.discardTree(), + prevBuffer: () => pager.prevBuffer(), + prevSiblingBuffer: () => pager.prevSiblingBuffer(), + nextBuffer: () => pager.nextBuffer(), + nextSiblingBuffer: () => pager.nextSiblingBuffer(), + parentBuffer: () => pager.parentBuffer(), + enterCommand: () => pager.command(), + searchForward: () => pager.searchForward(), + searchBackward: () => pager.searchBackward(), + isearchForward: () => pager.isearchForward(), + isearchBackward: () => pager.isearchBackward(), + searchNext: n => pager.searchNext(n), + searchPrev: n => pager.searchPrev(n), + toggleCommandMode: () => { + if ((pager.commandMode = consoleBuffer != pager.buffer)) + console.show(); + else + console.hide(); + }, + showFullAlert: () => pager.showFullAlert(), + toggleLinkHints: toggleLinkHints, + cursorLeft: n => pager.cursorLeft(n), + cursorDown: n => pager.cursorDown(n), + cursorUp: n => pager.cursorUp(n), + cursorRight: n => pager.cursorRight(n), + cursorLineBegin: () => pager.cursorLineBegin(), + cursorLineTextStart: () => pager.cursorLineTextStart(), + cursorLineEnd: () => pager.cursorLineEnd(), + cursorNextWord: () => pager.cursorNextWord(), + cursorNextViWord: () => pager.cursorNextViWord(), + cursorNextBigWord: () => pager.cursorNextBigWord(), + cursorWordBegin: () => pager.cursorWordBegin(), + cursorViWordBegin: () => pager.cursorViWordBegin(), + cursorBigWordBegin: () => pager.cursorBigWordBegin(), + cursorWordEnd: () => pager.cursorWordEnd(), + cursorViWordEnd: () => pager.cursorViWordEnd(), + cursorBigWordEnd: () => pager.cursorBigWordEnd(), + cursorPrevLink: n => pager.cursorPrevLink(n), + cursorNextLink: n => pager.cursorNextLink(n), + cursorPrevParagraph: n => pager.cursorPrevParagraph(n), + cursorNextParagraph: n => pager.cursorNextParagraph(n), + cursorTop: n => pager.cursorTop(n), + cursorMiddle: () => pager.cursorMiddle(), + cursorBottom: n => pager.cursorBottom(n), + cursorLeftEdge: () => pager.cursorLeftEdge(), + cursorMiddleColumn: () => pager.cursorMiddleColumn(), + cursorRightEdge: () => pager.cursorRightEdge(), + halfPageDown: n => pager.halfPageDown(n), + halfPageUp: n => pager.halfPageUp(n), + halfPageLeft: n => pager.halfPageLeft(n), + halfPageRight: n => pager.halfPageRight(n), + pageDown: n => pager.pageDown(n), + pageUp: n => pager.pageUp(n), + pageLeft: n => pager.pageLeft(n), + pageRight: n => pager.pageRight(n), + scrollDown: n => pager.scrollDown(n), + scrollUp: n => pager.scrollUp(n), + scrollLeft: n => pager.scrollLeft(n), + scrollRight: n => pager.scrollRight(n), + click: n => pager.click(n), + rightClick: async () => { + if (!pager.menu) { + const canceled = await pager.contextMenu(); + if (!canceled) + pager.openMenu() + } else + pager.closeMenu() + }, + toggleMenu: () => pager.menu ? pager.closeMenu() : pager.openMenu(), + viewImage: (_, save) => { + let contentType = null; + let url = null; + if (pager.hoverCachedImage) { + [url, contentType] = pager.hoverCachedImage.split(' '); + url = 'file:' + pager.getCacheFile(url, pager.buffer.process); + } else if (pager.hoverImage) + url = new Request(pager.hoverImage, {headers: {Accept: "*/*"}}); + if (url) + pager.gotoURL(url, {contentType: contentType, save: save}); + }, + toggleImages: () => pager.toggleImages(), + toggleScripting: () => { + const buffer = pager.buffer; + const buffer2 = pager.gotoURL(buffer.url, { + contentType: buffer.contentType, + history: buffer.history, + replace: buffer, + scripting: !buffer.scripting, + cookie: buffer.cookie + }); + if (buffer2) + buffer2.copyCursorPos(buffer) + }, + toggleCookie: () => { + const buffer = pager.buffer; + pager.gotoURL(buffer.url, { + contentType: buffer.contentType, + history: buffer.history, + replace: buffer, + scripting: buffer.scripting, + cookie: !buffer.cookie + }); + if (buffer2) + buffer2.copyCursorPos(buffer) + }, + markURL: () => pager.markURL(), + redraw: () => pager.redraw(), + reshape: () => pager.reshape(), + cancel: () => pager.cancel(), + /* vi G */ + gotoLineOrEnd: n => n ? pager.gotoLine(n) : pager.cursorLastLine(), + /* vim gg */ + gotoLineOrStart: n => n ? pager.gotoLine(n) : pager.cursorFirstLine(), + /* vi | */ + gotoColumnOrBegin: n => n ? pager.setCursorXCenter(n - 1) : pager.cursorLineBegin(), + gotoColumnOrEnd: n => n ? pager.setCursorXCenter(n - 1) : pager.cursorLineEnd(), + /* vi z. z^M z- */ + centerLineBegin: n => pager.centerLineBegin(n), + raisePageBegin: n => pager.raisePageBegin(n), + lowerPageBegin: n => pager.lowerPageBegin(n), + /* vi z+ z^ */ + nextPageBegin: n => pager.nextPageBegin(n), + previousPageBegin: n => pager.previousPageBegin(n), + /* vim zz zb zt */ + centerLine: n => pager.centerLine(n), + raisePage: n => pager.raisePage(n), + lowerPage: n => pager.lowerPage(n), + cursorToggleSelection: n => pager.cursorToggleSelection(n), + selectOrCopy: n => { + if (pager.currentSelection) + cmd.buffer.copySelection(); + else + pager.cursorToggleSelection(n) + }, + cursorToggleSelectionLine: n => pager.cursorToggleSelection(n, {selectionType: "line"}), + cursorToggleSelectionBlock: n => pager.cursorToggleSelection(n, {selectionType: "block"}), + sourceEdit: () => { + const url = pager.url; + pager.extern(pager.getEditorCommand(url.protocol == "file:" ? + decodeURIComponent(url.pathname) : + pager.cacheFile)); + }, + saveLink: () => pager.saveLink(), + saveSource: () => pager.saveSource(), + saveImage: () => cmd.buffer.viewImage(1, true), + mark: async () => { + const c = await pager.askChar('m'); + if (c.charCodeAt() != 3) /* ctrl-c */ + pager.setMark(c); + }, + gotoMark: async () => { + const c = await pager.askChar('`'); + if (c.charCodeAt() != 3) /* C-c */ + pager.gotoMark(c); + }, + gotoMarkY: async () => { + const c = await pager.askChar('`'); + if (c.charCodeAt() != 3) /* C-c */ + pager.gotoMarkY(c); + }, + copySelection: async () => { + if (!pager.currentSelection) { + feedNext(); + return; + } + const text = await pager.getSelectionText(pager.currentSelection); + const s = text.length != 1 ? "s" : ""; + if (pager.clipboardWrite(text)) + pager.alert(`Copied ${text.length} character${s}.`); + else + pager.alert("Error; please install xsel or adjust external.copy-cmd"); + pager.cursorToggleSelection(); + }, + cursorNthLink: n => pager.cursorNthLink(n), + cursorRevNthLink: n => pager.cursorRevNthLink(n), + line: { + submit: () => line.submit(), + backspace: () => line.backspace(), + delete: () => line.delete(), + cancel: () => line.cancel(), + prevWord: () => line.prevWord(), + nextWord: () => line.nextWord(), + backward: () => line.backward(), + forward: () => line.forward(), + clear: () => line.clear(), + kill: () => line.kill(), + clearWord: () => line.clearWord(), + killWord: () => line.killWord(), + begin: () => line.begin(), + end: () => line.end(), + escape: () => line.escape(), + prevHist: () => line.prevHist(), + nextHist: () => line.nextHist(), + openEditor: () => { + const res = pager.openEditor(line.text); + if (res != null) { + line.end(); + line.clear(); + line.write(res); + } + } + } + } + + /* backwards compat: cmd.pager and cmd.buffer used to be separate */ + cmd.pager = cmd.buffer = cmd; M src/io/chafile.nim => src/io/chafile.nim +1 -1 @@ 138 ,7 138 ,7 @@ proc readFile*(path: string; s: var string): Opt[void] = ?file.close() res - proc writeFile*(path, content: string; mode: cint): Opt[void] = + proc writeFile*(path: string; content: openArray[char]; mode: cint): Opt[void] = discard unlink(cstring(path)) let ps = newPosixStream(path, O_CREAT or O_WRONLY or O_EXCL, mode) if ps == nil: D src/local/client.nim => src/local/client.nim +0 -186 @@ 1 ,186 0 ,0 @@ - import std/os - import std/posix - import std/tables - - import config/config - import config/conftypes - import html/catom - import html/chadombuilder - import html/dom - import html/domcanvas - import html/domexception - import html/env - import html/formdata - import html/jsencoding - import html/jsintl - import html/script - import html/xmlhttprequest - import io/chafile - import io/console - import io/dynstream - import local/container - import local/lineedit - import local/pager - import local/select - import local/term - import monoucha/fromjs - import monoucha/jsbind - import monoucha/jsopaque - import monoucha/jsutils - import monoucha/quickjs - import monoucha/tojs - import server/forkserver - import server/headers - import server/loaderiface - import server/request - import server/response - import types/blob - import types/jsopt - import types/opt - import types/url - import utils/twtstr - - type - Client* = ref object of Window - pager* {.jsget.}: Pager - - proc config(client: Client): Config {.jsfget.} = - return client.pager.config - - proc suspend(ctx: JSContext; client: Client): JSValue {.jsfunc.} = - if client.pager.term.quit().isErr: - return ctx.jsQuit(client.pager, 1) - discard kill(0, cint(SIGTSTP)) - discard client.pager.term.restart() #TODO - return JS_UNDEFINED - - proc jsQuit(ctx: JSContext; client: Client; code = 0): JSValue - {.jsfunc: "quit".} = - ctx.jsQuit(client.pager, code) - - proc feedNext(client: Client) {.jsfunc.} = - client.pager.feednext = true - - proc alert(client: Client; msg: string) {.jsfunc.} = - client.pager.alert(msg) - - proc consoleBuffer(client: Client): Container {.jsfget.} = - return client.pager.pinned.console - - proc readBlob(client: Client; path: string): WebFile {.jsfunc.} = - let ps = newPosixStream(path, O_RDONLY, 0) - if ps == nil: - return nil - let name = path.afterLast('/') - return newWebFile(name, ps.fd) - - proc readFile(ctx: JSContext; client: Client; path: string): JSValue - {.jsfunc.} = - var s: string - if chafile.readFile(path, s).isOk: - return ctx.toJS(s) - return JS_NULL - - proc writeFile(ctx: JSContext; client: Client; path, content: string): JSValue - {.jsfunc.} = - if chafile.writeFile(path, content, 0o644).isOk: - return JS_UNDEFINED - return JS_ThrowTypeError(ctx, "Could not write to file %s", cstring(path)) - - proc getenv(ctx: JSContext; client: Client; s: string; - fallback: JSValueConst = JS_NULL): JSValue {.jsfunc.} = - let env = twtstr.getEnvCString(s) - if env == nil: - return JS_DupValue(ctx, fallback) - return JS_NewString(ctx, env) - - proc setenv(ctx: JSContext; client: Client; s: string; val: JSValueConst): - JSValue {.jsfunc.} = - if JS_IsNull(val): - twtstr.unsetEnv(s) - else: - var vals: string - ?ctx.fromJS(val, vals) - if twtstr.setEnv(s, vals).isErr: - return JS_ThrowTypeError(ctx, "Failed to set environment variable") - return JS_UNDEFINED - - proc nimGCStats(client: Client): string {.jsfunc.} = - return GC_getStatistics() - - proc jsGCStats(client: Client): string {.jsfunc.} = - return client.jsrt.getMemoryUsage() - - proc nimCollect(client: Client) {.jsfunc.} = - try: - GC_fullCollect() - except Exception: - discard - - proc jsCollect(client: Client) {.jsfunc.} = - JS_RunGC(client.jsrt) - - proc sleep(client: Client; millis: int) {.jsfunc.} = - os.sleep(millis) - - proc line(client: Client): LineEdit {.jsfget.} = - return client.pager.lineedit - - proc addJSModules(client: Client; ctx: JSContext): JSClassID = - let (windowCID, eventCID, eventTargetCID) = ctx.addWindowModule2() - ctx.addConsoleModule() - ctx.addNavigatorModule() - ctx.addDOMExceptionModule() - ctx.addDOMModule(eventTargetCID) - ctx.addCanvasModule() - ctx.addURLModule() - ctx.addHTMLModule() - ctx.addIntlModule() - ctx.addBlobModule() - ctx.addFormDataModule() - ctx.addXMLHttpRequestModule(eventCID, eventTargetCID) - ctx.addHeadersModule() - ctx.addRequestModule() - ctx.addResponseModule() - ctx.addEncodingModule() - ctx.addLineEditModule() - ctx.addConfigModule() - ctx.addPagerModule() - ctx.addContainerModule() - ctx.addSelectModule() - return windowCID - - proc newClient*(config: Config; forkserver: ForkServer; loaderPid: int; - jsctx: JSContext; warnings: seq[string]; urandom: PosixStream; - loaderStream: SocketStream): Client = - initCAtomFactory() - let jsrt = JS_GetRuntime(jsctx) - let clientPid = getCurrentProcessId() - let loader = newFileLoader(clientPid, loaderStream) - let console = newConsole(cast[ChaFile](stderr)) - let pager = newPager(config, forkserver, jsctx, warnings, loader, loaderPid, - console) - let client = Client( - jsrt: jsrt, - jsctx: jsctx, - loader: loader, - crypto: Crypto(urandom: urandom), - pager: pager, - timeouts: pager.timeouts, - console: console, - settings: EnvironmentSettings( - scripting: smApp, - attrsp: addr pager.term.attrs, - scriptAttrsp: addr pager.term.attrs - ), - dangerAlwaysSameOrigin: true - ) - jsctx.setGlobal(client) - let global = JS_GetGlobalObject(jsctx) - doAssert jsctx.definePropertyE(global, "cmd", config.cmd.jsObj) != - dprException - JS_FreeValue(jsctx, global) - config.cmd.jsObj = JS_NULL - let windowCID = client.addJSModules(jsctx) - jsctx.registerType(Client, asglobal = true, parent = windowCID) - return client M src/local/pager.nim => src/local/pager.nim +150 -62 @@ 171 ,7 171 ,6 @@ type iregex: Result[Regex, string] isearchpromise: EmptyPromise jsctx: JSContext - jsrt: JSRuntime lastAlert: string # last alert seen by the user lineData: LineData lineHist: array[LineMode, History] @@ 223 ,7 222 ,7 @@ proc connected3(pager: Pager; container: Container; stream: SocketStream; proc cloned(pager: Pager; container: Container; stream: SocketStream) proc deleteContainer(pager: Pager; container, setTarget: Container) proc dumpBuffers(pager: Pager) - proc evalJS(pager: Pager; src, filename: string; module = false): JSValue + proc evalJS(pager: Pager; val: JSValue): JSValue proc fulfillAsk(pager: Pager; s: string) proc getHist(pager: Pager; mode: LineMode): History proc handleEvents(pager: Pager) @@ 475 ,7 474 ,16 @@ proc interruptHandler(rt: JSRuntime; opaque: pointer): cint {.cdecl.} = proc evalJSFree(opaque: RootRef; src, filename: string) = let pager = Pager(opaque) - JS_FreeValue(pager.jsctx, pager.evalJS(src, filename)) + let ctx = pager.jsctx + let val = ctx.eval(src, filename, + JS_EVAL_TYPE_GLOBAL or JS_EVAL_FLAG_COMPILE_ONLY) + if not JS_IsException(val): + let ret = pager.evalJS(val) + if JS_IsException(ret): + pager.console.writeException(ctx) + JS_FreeValue(ctx, ret) + else: + pager.console.writeException(ctx) type CookieStreamOpaque = ref object of RootObj pager: Pager @@ 565 ,7 573 ,6 @@ proc newPager*(config: Config; forkserver: ForkServer; ctx: JSContext; forkserver: forkserver, term: newTerminal(newPosixStream(STDOUT_FILENO), config), alerts: alerts, - jsrt: JS_GetRuntime(ctx), jsctx: ctx, luctx: LUContext(), exitCode: -1, @@ 579 ,8 586 ,9 @@ proc newPager*(config: Config; forkserver: ForkServer; ctx: JSContext; relist: newBuiltinRegexList() ) pager.timeouts = newTimeoutState(pager.jsctx, evalJSFree, pager) - JS_SetModuleLoaderFunc(pager.jsrt, normalizeModuleName, loadJSModule, nil) - JS_SetInterruptHandler(pager.jsrt, interruptHandler, nil) + let rt = JS_GetRuntime(ctx) + JS_SetModuleLoaderFunc(rt, normalizeModuleName, loadJSModule, nil) + JS_SetInterruptHandler(rt, interruptHandler, nil) pager.initLoader() block history: let hist = newHistory(pager.config.external.historySize, getTime().toUnix()) @@ 636 ,14 644 ,16 @@ proc cleanup(pager: Pager) = pager.alert("failed to save cookies") for msg in pager.alerts: discard cast[ChaFile](stderr).write("cha: " & msg & '\n') - for val in pager.config.cmd.map.values: - JS_FreeValue(pager.jsctx, val) + pager.jsctx.freeValues(pager.config.line) + pager.jsctx.freeValues(pager.config.page) for fn in pager.config.jsvfns: JS_FreeValue(pager.jsctx, fn.val) + JS_FreeValue(pager.jsctx, pager.config.feedNext.val) pager.timeouts.clearAll() assert not pager.inEval + let rt = JS_GetRuntime(pager.jsctx) pager.jsctx.free() - pager.jsrt.free() + rt.free() if pager.console != nil and pager.dumpConsoleFile: if file := chafile.fopen(pager.consoleFile, "r+"): let stderr = cast[ChaFile](stderr) @@ 657 ,24 667 ,23 @@ proc quit(pager: Pager; code: int) = quit(code) proc runJSJobs(pager: Pager) = + let rt = JS_GetRuntime(pager.jsctx) while true: - let ctx = pager.jsrt.runJSJobs() + let ctx = rt.runJSJobs() if ctx == nil: break pager.console.writeException(ctx) if pager.exitCode != -1: pager.quit(pager.exitCode) - proc evalJS(pager: Pager; src, filename: string; module = false): JSValue = + proc evalJSStart(pager: Pager): bool = if pager.config.start.headless == hmFalse: pager.term.catchSigint() - let flags = if module: - JS_EVAL_TYPE_MODULE - else: - JS_EVAL_TYPE_GLOBAL let wasInEval = pager.inEval pager.inEval = true - result = pager.jsctx.eval(src, filename, flags) + return wasInEval + + proc evalJSEnd(pager: Pager; wasInEval: bool) = pager.inEval = false if pager.exitCode != -1: # if we are in a nested eval, then just wait until we are not. @@ 685 ,52 694 ,84 @@ proc evalJS(pager: Pager; src, filename: string; module = false): JSValue = if pager.config.start.headless == hmFalse: pager.term.respectSigint() - proc evalActionJS(pager: Pager; action: string): JSValue = - let val = pager.config.cmd.map.getOrDefault(action, JS_UNINITIALIZED) - if not JS_IsUninitialized(val): - return JS_DupValue(pager.jsctx, val) - return pager.evalJS(action, "<command>") + proc evalJS(pager: Pager; val: JSValue): JSValue = + let wasInEval = pager.evalJSStart() + result = pager.jsctx.evalFunction(val) + pager.evalJSEnd(wasInEval) # Warning: this is not re-entrant. - proc evalAction(pager: Pager; action: string; arg0: int32): EmptyPromise = - var ret = pager.evalActionJS(action) + proc evalAction(pager: Pager; val: JSValue; arg0: int32; oval: ptr JSValue): + EmptyPromise = + let wasInEval = pager.evalJSStart() let ctx = pager.jsctx - var p: EmptyPromise = nil - if JS_IsFunction(ctx, ret): + var val = val + if not JS_IsFunction(ctx, val): # yes, this looks weird, but it's correct + val = ctx.evalFunction(val) + if oval != nil and JS_IsFunction(ctx, val): + # optimization: skip this eval on the next call. + # ideally oval should be a `var` param, but then we can't just quit in + # evalJSEnd as usual... not unsurmountable but gets very ugly, so I'm + # sticking with the pointer. + JS_FreeValue(ctx, oval[]) + oval[] = JS_DupValue(ctx, val) + # If an action evaluates to a function that function is evaluated too. + if JS_IsFunction(ctx, val): if arg0 != 0: let arg0 = ctx.toJS(arg0) - let ret2 = ctx.callFree(ret, JS_UNDEFINED, arg0) + val = ctx.callFree(val, JS_UNDEFINED, arg0) JS_FreeValue(ctx, arg0) - ret = ret2 else: # no precnum - ret = ctx.callFree(ret, JS_UNDEFINED) - if pager.exitCode != -1: - assert not pager.inEval - pager.quit(pager.exitCode) - if JS_IsException(ret): - pager.console.writeException(pager.jsctx) - elif JS_IsObject(ret): + val = ctx.callFree(val, JS_UNDEFINED) + var p: EmptyPromise = nil + if JS_IsException(val): + pager.console.writeException(ctx) + elif JS_IsObject(val): var maybep: EmptyPromise - if ctx.fromJS(ret, maybep).isOk: + if ctx.fromJS(val, maybep).isOk: p = maybep - JS_FreeValue(ctx, ret) + JS_FreeValue(ctx, val) + pager.evalJSEnd(wasInEval) return p + proc evalAction(pager: Pager; action: string; arg0: int32): EmptyPromise = + let ctx = pager.jsctx + let val = ctx.eval("cmd." & action, "<command>", JS_EVAL_TYPE_GLOBAL) + if JS_IsException(val): + pager.console.writeException(pager.jsctx) + return nil + return pager.evalAction(val, arg0, nil) + + proc evalInputAction(pager: Pager; map: ActionMap; arg0: int32): + tuple[found: bool; p: EmptyPromise] = + let ctx = pager.jsctx + let val = map.getOrDefault(pager.inputBuffer) + if JS_IsUndefined(val): + return (false, nil) + # this may change oval (and thereby val too on the next invocation) + let oval = map.getActionPtr(pager.inputBuffer) + let p = pager.evalAction(JS_DupValue(ctx, val), arg0, oval) + return (true, p) + proc queueStatusUpdate(pager: Pager) = if pager.updateStatus == ussNone: pager.updateStatus = ussUpdate - proc command0(pager: Pager; src: string; filename = "<command>"; - silence = false; module = false) = - let ret = pager.evalJS(src, filename, module = module) + proc evalCommand(pager: Pager; src: string; filename = "<command>"; + silence = false) = + let ctx = pager.jsctx + let val = ctx.eval(src, "<command>", + JS_EVAL_TYPE_GLOBAL or JS_EVAL_FLAG_COMPILE_ONLY) + if JS_IsException(val): + pager.console.writeException(ctx) + return + let ret = pager.evalJS(val) if JS_IsException(ret): pager.console.writeException(pager.jsctx) else: - if not silence: - var res: string - if pager.jsctx.fromJS(ret, res).isOk: - pager.console.log(res) - pager.console.flush() + var res: string + if pager.jsctx.fromJS(ret, res).isOk: + pager.console.log(res) + pager.console.flush() JS_FreeValue(pager.jsctx, ret) proc hasMouseSelection(pager: Pager): bool = @@ 955 ,11 996 ,9 @@ proc handleLineInput(pager: Pager; e: InputEvent) = edit.escNext = false edit.write(move(pager.inputBuffer)) else: - let action = pager.config.getLinedAction(pager
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.mediationGroups/list
Method: accounts.mediationGroups.list  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference Method: accounts.mediationGroups.list Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag This method lists mediation groups under a specified AdMob account. Access to this method is limited and may require contacting your account manager. The request uses a GET HTTP method and requires the parent account resource name in the path parameters. You can filter the results using various criteria like ad source IDs, app IDs, and platform, and control pagination with pageSize and pageToken . The response body contains a list of mediation groups and a nextPageToken if there are more results. HTTP request Path parameters Query parameters Request body Response body JSON representation Authorization scopes Examples Try it! List mediation groups under the specified AdMob account. This method has limited access. If you see a 403 permission denied error, please reach out to your account manager for access. HTTP request GET https://admob.googleapis.com/v1beta/{parent=accounts/*}/mediationGroups The URL uses gRPC Transcoding syntax. Path parameters Parameters parent string Required. Resource name of the account to list mediation groups for. Example: accounts/pub-9876543210987654 Query parameters Parameters pageSize integer The maximum number of mediation groups to return. If unspecified or 0, at most 10,000 mediation groups will be returned. The maximum value is 20,000; values above 20,000 will be coerced to 20,000. pageToken string The value returned by the last ListMediationGroupsResponse ; indicates that this is a continuation of a prior mediationGroups.list call, and that the system should return the next page of data. filter string The filter string that uses EBNF grammar syntax . Possible fields to filter by are: "AD_SOURCE_IDS" "AD_UNIT_IDS" "APP_IDS" "DISPLAY_NAME" "FORMAT" "MEDIATION_GROUP_ID" "PLATFORM" "STATE" "TARGETED_REGION_CODES" Possible filter functions are: IN : Used to filter fields that represent a singleton including "MEDIATION_GROUP_ID", "DISPLAY_NAME", "STATE", "PLATFORM", and "FORMAT". CONTAINS_ANY : Used to filter fields that represent a collection including "AD_SOURCE_IDS", "AD_UNIT_IDS", "APP_IDS", and "TARGETED_REGION_CODES". The filter functions can be added together using AND . OR functionality is not supported. Example: filter: IN(DISPLAY_NAME, "Test Group 1", "Test Group 2") AND IN(PLATFORM, "ANDROID") AND CONTAINS_ANY(AD_SOURCE_IDS, "5450213213286189855") Request body The request body must be empty. Response body Response for the mediation groups list request. If successful, the response body contains data with the following structure: JSON representation { "mediationGroups" : [ { object ( MediationGroup ) } ] , "nextPageToken" : string } Fields mediationGroups[] object ( MediationGroup ) The resulting mediation groups for the requested account. nextPageToken string If not empty, indicates that there may be more mediation groups for the request; this value should be passed in a new ListMediationGroupsRequest . Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/admob.monetization https://www.googleapis.com/auth/admob.readonly For more information, see the OAuth 2.0 Overview . Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["This outlines how to list mediation groups within an AdMob account using a `GET` request. The request URL structure includes a required `parent` path parameter specifying the account. Optional query parameters are available: `pageSize` controls the number of results (max 20,000), `pageToken` for pagination, and `filter` to narrow results by criteria like `DISPLAY_NAME`, `PLATFORM`, or `AD_SOURCE_IDS`. The request body is empty. A successful response contains an array of `mediationGroups` and a `nextPageToken` for pagination. Authorization is required.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://developers.google.com/google-ads/api/docs/release-notes
Release notes  |  Google Ads API  |  Google for Developers Skip to main content Google Ads API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in Guides Reference Libraries and samples Policies Support Google Ads API Guides Reference Libraries and samples Policies Support Google Ads API overview Release notes Video guides Overview Authentication & authorization Introduction Web flow with the OAuth playground Best practices Performance Max Introduction Assets Campaign and budget Retail Asset groups Listing group filters Asset group assets Campaign conversion goals Enhanced conversions for web Introduction Usage flow Code example Enhanced Conversions for Leads Introduction Usage Flow GAQL Introduction Query structure & grammar segmentation GoogleAdsRow Field Metadata Fields and Clauses Field compatibility REST API Introduction Authorization with rest SearchStream & search Best practices Retrieving information efficiently Mutating information efficiently Advanced information retrieval Account change history The Basics Change Status Optimization Score & Recommendations Overview Optimization score Recommendations Overview Take actions Apply parameters Take actions in bulk Error handling & testing Best practices Smart Bidding Overview & getting started MaximizeConversions & MaximizeConversionValue Logging & Monitoring Introduction Logging & Monitoring in the Cloud Sending client logs to Google Cloud Integration Testing Introduction Testing in practice Testing Best Practices Authentication & Authorization Introduction Web Flow with the OAuth Playground Best Practices GAQL Introduction Query Structure & Grammar segmentation GoogleAdsRow Field metadata Fields and clauses Field Compatibility SELECT Requirement Date Range Validation Filtering Conditions Validating Queries REST API Introduction Authorization with REST SearchStream & Search Best Practices Retrieving Information Efficiently Mutating Information Efficiently Advanced Information Retrieval Account change history The Basics Change Status Optimization score & recommendations Overview Deep Dive: Optimization Score Deep Dive: Recommendations Recommendations: Take Actions Recommendations: Apply Parameters Recommendations: Take Actions In Bulk Error Handling & Testing Best Practices Smart Bidding Overview & Getting Started MaximizeConversions & MaximizeConversionValue Logging & Monitoring Introduction Logging & Monitoring in the Cloud Sending Client Logs to Google Cloud Get started Introduction Quickstart Handle errors Common errors Next steps Authentication and authorization Overview Access model overview Service account workflow User authentication workflow Overview Single-user authentication workflow Multi-user authentication workflow Handling two-step verification OAuth 2.0 internals Set up a Google API Console project for authorization Credential management Basic concepts Overview API structure Versioning Changing objects Retrieving objects Resource metadata Call structure Mutates Overview Resource mutates Bulk mutates Best practices Cloud-managed access levels Google Ads management Manage accounts Overview Create an account Link to manager accounts List accessible accounts Get account hierarchy Manage user access Manage user access invitations Link product accounts Link YouTube Change status Change event Advertiser identity verification Manage assets Overview Creation and usage Location assets Automated assets Asset automation settings Business message assets Reporting Create assets with generative AI (closed beta) Asset generation (closed beta) Asset generation errors (closed beta) Asset generation code examples (closed beta) Manage billing Billing overview Billing setup Account budget Invoice Create and manage campaigns Explore campaign types Overview Create campaigns Create ad groups Ad management Overview Ad types Upgraded URLs Overview Fields Supported entities Valuetrack parameters for Upgraded URLs Reports Serving URL expansion rules Dynamic Search Ads Overview Create DSAs DSA page feeds Reporting Hotel Ads Overview Create campaign Create ad group Create ad Create listing groups Bidding Overview Assign strategy Set bids Adjust bids Reporting Travel Feeds for Search Ads Things to do ads Overview Create campaign Create ad group Create ad Create listing groups Reporting Responsive display ads Overview Create ads Retrieve ads Responsive search ads Overview Create ads Mutate ads Ad customization Retrieve ads Shopping Ads Overview Link Merchant Center Create campaign Create ad group Create ad Create listing groups Reporting Uploaded display ads Overview Create uploaded display ads Uploaded HTML5 ads Budgets Overview Create budget Share budget Assign budget Remove budget Track performance Restrictions & errors Bidding Overview Strategy types Strategy status Portfolio and standard bidding strategies Cross-account bidding strategies Ad group level target overrides Set bids manually Manage bid modifiers Create seasonality adjustments Create data exclusions Campaign Drafts Targeting Overview Criteria Shared sets Bid modifiers Location targeting Targeting settings Performance Max campaigns Overview Get started Business goals Online sales or lead generation Online sales with a product feed Travel goals Concepts Campaign setup Create a budget Create a campaign Conversion goals Create campaign criteria ValueTrack parameters Asset group setup Assets Asset requirements Asset groups Asset group signals Listing groups Reporting Overview Campaign Reporting Asset Group Reporting Asset Reporting Retail Campaign Reporting Campaign Criterion Reporting Upgrade to Performance Max Overview Check upgrade eligibility Create a campaign based on an existing campaign Enhance a campaign Compare performance with an existing campaign Complete the upgrade Best practices Structure requests Batch processing Optimizations Troubleshooting Common errors when working with Performance Max Resources and examples Code examples Add performance max campaign Add performance max retail campaign Add performance max product listing group tree Add performance max for travel goals campaign App campaigns Overview Create campaign Create ad group & ad Code example Reporting Demand Gen campaigns Overview Create campaign Audience targeting Campaigns with product feeds Channel controls Reporting & optimization Local Services campaigns Smart campaigns Overview Get suggestions Create budget Create campaign and campaign setting Create campaign criteria Create ad group and ad group ad Send mutate request Reporting Search campaigns Getting started AI Max for Search campaigns Getting started Video campaigns Manage conversions Overview Conversion action categories Getting started Manage offline conversions Manage online conversions Manage call conversions Manage store sales conversions Modify uploaded conversions Upload conversion adjustments Conversion value rules Custom conversion variables Conversion goals Overview Customer goals Campaign goals Lifecycle goals Monitor Upload Health Reporting Troubleshooting Manage audiences Overview Audiences Get started with audience segments Visitors to your website Visitors to specific pages Visitors who took specific actions Multiple user lists Customer match Get started Manage Troubleshoot Custom audiences Lookalike segments Sample scenario Overview Creating the rule item groups Creating the user list Dynamic Remarketing Overview Prerequisites Asset-based Dynamic Remarketing Merchant center-based Dynamic Remarketing Batch processing Overview Usage flow Using temporary IDs Listing group filters Best practices & limitations Optimize your ads Optimization & recommendations Keyword planning Overview Generate keyword ideas Generate ad group themes Generate historical metrics Generate forecast metrics Experiments Overview Create experiments Create experiment arms Experiment operations Reporting on experiments Async errors Reach forecasting Overview Concepts Authenticate Specify a media plan Generate a curve Bid simulations Overview Prerequisites Retrieve bid simulations Report and monitor performance Reporting Overview Use case Criteria metrics Segmentation Zero metrics Labels Streaming Paging Reports in the UI Mapping valuetrack parameters with report fields Query language Overview Query grammar Query structure Date ranges Case sensitivity Ordering and limiting results Interactive query builder Query Validator Query Cookbook Audience and creator insights Overview Audience insights YouTube creator insights Develop applications Test and troubleshoot your application Best practices Overview API limits and quotas System limits Troubleshooting Testing Test accounts Developer token reset Error debugging Error types Understand API errors Common errors Partial failures Warnings Policy exemption request Overview Ads Keywords Productionize your application Overview Secure credentials Access levels Logging Monitoring Manage data efficiently Rate limits Shared aliases Stay updated Home Products Google Ads API Send feedback Release notes Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag Google Ads API v22 introduces the AssetGenerationService for generating text and image assets using generative AI. New bidding goals without a target CPA or ROAS are added for App campaigns to optimize for installs or total value. Demand Gen campaigns now support the TargetCPC bidding strategy and asset automation for generating design variations and videos from existing assets. Performance Max campaigns gain new AssetAutomationType values for image enhancement and extraction, along with new segments for reporting. Planning services include updates for user lists, partner audiences, YouTube metrics, trend insights, and support for parental status and income ranges in AudienceInsightsService. v22 (2025-10-15) The following new features and updates were added in v22. See Upgrade to the latest version for guidance. Assets Added LANDING_PAGE_PREVIEW as a new image asset field type. Introduced the AssetGenerationService (Beta): This service allows generating text and image assets using generative AI. This service is initially available only to a limited set of closed beta participants. GenerateText : Generates text based on inputs like final URL, freeform prompts, keywords, and existing campaign context. GenerateImages : Generates images based on inputs like final URL, freeform prompts, existing campaign context, or by recontextualizing existing product images. Errors during asset generation are returned with codes from AssetGenerationErrorEnum . Campaigns Added new bidding goals for App campaigns for installs (ACi) to optimize without specifying a target, useful for rapid scaling or when determining the right target is challenging. In AppCampaignBiddingStrategyGoalType : OPTIMIZE_IN_APP_CONVERSIONS_WITHOUT_TARGET_CPA : Use with standard Maximize Conversions . OPTIMIZE_TOTAL_VALUE_WITHOUT_TARGET_ROAS : Use with standard Maximize Conversion Value . Added support for the fixed share of voice bidding strategy type . Added Campaign.feed_types , showing the types of feeds attached to a campaign. For Performance Max campaigns, this can indicate the business vertical, such as MERCHANT_CENTER_FEED for retail. Allowed attaching NEGATIVE_KEYWORDS shared sets to MULTI_CHANNEL (for App campaigns) and LOCAL campaigns. Demand Gen Added the TargetCPC bidding strategy for Demand Gen campaigns. This strategy sets bids to maximize clicks at the configured target cost-per-click (CPC). Set the campaign-level target CPC using Campaign.target_cpc . Override at the ad group level using AdGroup.target_cpc_micros . Added a new AssetAutomationType : GENERATE_DESIGN_VERSIONS_FOR_IMAGES : Available for DemandGenMultiAssetAds . If enabled, this adds design elements and embeds text assets into image assets to create new image assets with different aspect ratios. New DemandGenMultiAssetAds are opted in by default. Added a new AssetAutomationType : GENERATE_VIDEOS_FROM_OTHER_ASSETS : Available for DemandGenMultiAssetAds . If enabled, it generates videos using other assets like images and text. These videos can then be used to create new DemandGenVideoResponsiveAds . New DemandGenMultiAssetAds are opted in by default. Renamed the field BudgetPerDayMinimumErrorDetails.minimum_bugdet_amount_micros to minimum_budget_amount_micros . General Added a limit of 10,000 operations per AddBatchJobOperations request. Updated handling for the page_size field in ListBatchJobResultsRequest : If page_size is not set or is 0, it now defaults to the maximum of 1,000 (previously returned INVALID_PAGE_SIZE ). If page_size exceeds 1,000, the API now returns an INVALID_PAGE_SIZE error (previously silently capped at 1,000). Added a new error code: QuotaError.PAYMENTS_PROFILE_ACTIVATION_RATE_LIMIT_EXCEEDED to indicate when the payment profile activation rates limit has been exceeded. Performance Max Added new AssetAutomationType values for Performance Max campaigns: GENERATE_IMAGE_ENHANCEMENT : Enables automatic creation of enhanced images such as auto-cropping. Enabled by default. GENERATE_IMAGE_EXTRACTION : Enables automatically sourcing images from final URLs. Defaults to the account-level Dynamic Image Extension setting. Removed AssetPerformanceLabel for Performance Max campaigns. The functionality of the removed Campaign.url_expansion_opt_out is now managed by setting the AssetAutomationType FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION in AssetAutomationSetting . Added new segments for Performance Max campaigns. Each of these segments is only available for Performance Max campaigns and won't return data when any other campaign type is selected. ad_using_product_data : Indicates if an ad uses product data from a Google Merchant Center feed. ad_using_video : Indicates if an ad uses a video asset. Planning In UserListCrmDataSourceType , added the value THIRD_PARTY_PARTNER_DATA . Added new error codes related to partner audiences: PARTNER_AUDIENCE_SOURCE_NOT_SUPPORTED_FOR_USER_LIST_TYPE PARTNER_AUDIENCE_TYPE_NOT_SUPPORTED_FOR_USER_LIST_TYPE COMMERCE_PARTNER_NOT_ALLOWED PARTNER_AUDIENCE_INFO_NOT_SUPPORTED_FOR_USER_LIST_TYPE PARTNER_MANAGER_ACCOUNT_DISALLOWED PARTNER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA ADVERTISER_TOS_NOT_ACCEPTED ADVERTISER_PARTNER_LINK_MISSING ADVERTISER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA ACCOUNT_SETTING_TYPE_NOT_ALLOWED_FOR_USER_LIST_TYPE INVALID_CAMPAIGN_TYPE_FOR_THIRD_PARTY_PARTNER_DATA_LIST Added is_active_live_stream_creator to YouTubeMetrics . This is returned by ContentCreatorInsightsService.GenerateCreatorInsights and indicates if a creator published a livestream in the past 90 days. Added a new PlannableUserListMetadata message that contains UserListCrmDataSourceType in PlannableUserList . This message is returned by 'ReachPlanService.ListPlannableUserLists' to show if a CRM user list data source is either FIRST_PARTY or THIRD_PARTY_PARTNER_DATA . In ReachPlanService , added the field trueview_views , which replaces the views field. In TrendInsight , added support for related_videos and related_creators . Also added video properties metadata and publish dates in YouTubeVideoAttributeMetadata.video_properties and YouTubeVideoAttributeMetadata.publish_date . AudienceInsightsService.GenerateInsightsFinderReport now supports parental_status and income_ranges , and more complex AND/OR combinations of topics and audiences. Reports Added two new click types: CLICK_TO_MESSAGE_THIRD_PARTY_CLICK and CLICK_TO_MESSAGE_LANDING_PAGE_CLICK . AssetGroupAsset is now segmentable by device , conversion_action , conversion_action_name , and conversion_action_category . AdGroupAdAssetView and AdGroupAdAssetCombinationView now fully support performance and conversion metrics for RESPONSIVE_SEARCH_AD . Previously, only impressions were returned for this ad type in these views. To facilitate Smart Bidding Exploration, the following metrics are now segmentable by date fields ( date , month , quarter , week , year ): clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Added a new resource: TargetingExpansionView , which reports metrics for expansions over manual targeting, such as keywordless expansion for AI Max for Search Campaigns. Added new segments for PMax campaigns. See Performance Max updates . Shopping Fixed the campaign and ad group scoping of metrics in the ShoppingProduct resource. Unified Goals Added support for customer retention goals to optimize for re-engaging existing customers. Configure targeting using CampaignRetentionGoalSettings.target_option : TARGET_SPECIFIC : Only uses users from user lists associated with the campaign. (Currently allowlist only). TARGET_ALL (Default): Targets all users for re-engagement. Video Renamed several video-views related metrics: average_cpv is now trueview_average_cpv video_view_rate is now video_trueview_view_rate video_views is now video_trueview_views video_view_rate_in_feed is now video_trueview_view_rate_in_feed video_view_rate_in_stream is now video_trueview_view_rate_in_stream video_view_rate_shorts is now video_trueview_view_rate_shorts Added metrics for video ad watch time: video_watch_time_duration_millis : Total watch time. average_video_watch_time_duration_millis : Average watch time per impression. v21 (2025-08-06) See Upgrade to the latest version for guidance. AI Max for Search campaigns You can now use the ai_max_setting.enable_ai_max field of the Campaign to enable AI Max for Search campaigns. AI Max for Search campaigns expands a Search campaign's reach through search term matching and allows controlling whether targeting and creative controls serve when set. Text asset automation and brand list controls that were set in previous version requests will still be respected until AI Max for Search campaigns is explicitly toggled and turned off. Campaign.ai_max_setting.bundling_required can be used to determine if AI Max for Search campaigns must be enabled to respect or modify text asset automation and brand list controls. AdGroup.ai_max_ad_group_setting.disable_search_term_matching can be used to disable search term matching when a parent campaign has enabled AI Max for Search campaigns. See our blog post Unlock next-level performance with AI Max for Search campaigns . Added CampaignError.AI_MAX_MUST_BE_ENABLED , which is thrown for Search campaigns when you opt in to FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION without enabling AI Max for Search campaigns on the campaign. Added support for applying targeting controls at the ad group level in AI Max for Search campaigns. You can now add the following criteria to ad groups: Brand lists Locations Webpages (URL rules) Added the ai_max_search_term_ad_combination_view to report on performance for combinations of search terms, headlines, and landing pages. This view shows which search queries triggered your ads and how those specific combinations performed. A future release will include an additional view that also includes Performance Max data. If you want to avoid migrating your implementation to get Performance Max data, consider waiting for that release. Added AI_MAX as a new value for the search_term_match_type segment. Assets Added the fields terms_and_conditions_text , terms_and_conditions_uri , promotion_barcode_info , and promotion_qr_code_info in PromotionAsset . Barcode and QR code fields are located within the promotion_trigger oneof. See the Help Center article About promotion assets . Added FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION to AssetAutomationTypeEnum . With this setting, you can control the automatic generation of text assets and landing pages from the final URL in Search campaigns. Added a new service AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset to remove automatically created assets from Campaign . This service supports removal of the final URL expansion asset only. Added DESCRIPTION_PREFIX to the ServedAssetFieldType enum. This corrects an issue where the served_asset_field_type in ad_group_ad_asset_combination_view was UNKNOWN for assets serving as a description prefix. Campaigns Added a new enum value MISSING_LOCATION_TARGETING to CampaignPrimaryStatusReason . This new status reason will be returned only for location-restricted campaigns which don't specify location targeting. For location-restricted campaigns, any attempt to add location targeting outside the allowed area will result in the criterion error LOCATION_TARGETING_NOT_ELIGIBLE_FOR_RESTRICTED_CAMPAIGN . Added support for third-party integration partners on the VideoCustomer.third_party_integration_partners and Campaign.third_party_integration_partners levels. See the Help Center article Track app conversions with third-party app analytics . You can now set the advertising_partner_ids field for an existing Campaign . Previously, this field could only be set for a new campaign during its creation. The field is still immutable after being set. By using a shared list of type TYPE_PLACEMENT_LIST defined at the manager account level, advertisers can now use CustomerNegativeCriterion criteria to exclude a list of placements in individual advertiser customer accounts. Added DESCRIPTION_PREFIX to the ServedAssetFieldType enum. This corrects an issue where the served_asset_field_type in the ad_group_ad_asset_combination_view was UNKNOWN for assets serving as a description prefix. Added support for the field target_roas_tolerance_percent_millis in the MaximizeConversionValue and TargetRoas bidding strategies. TargetRoas.target_roas_tolerance_percent_millis is only available for portfolio strategies, which is only available for Search campaigns. Changed a ProductGroup error code. For requests with a partial failure enabled, LISTING_GROUP_ERROR_IN_ANOTHER_OPERATION will be returned instead of INVALID_LISTING_GROUP_HIERARCHY . Added a new resource LocationInterestView that summarizes the performance of adgroup location interest criteria. Conversions Added ENGAGED_VIEW as a new value for the conversion_attribution_event_type segment. Customers will no longer have access to debug_enabled mode in ConversionUploadService . This field, if set to TRUE , was earlier used to distinguish the CLICK_NOT_FOUND error from SUCCESS for enhanced conversions for leads imports. Demand Gen Added an error code CampaignBudgetError.BUDGET_BELOW_DAILY_MINIMUM . In the future, this error will be returned when attempting to set a very low budget amount for a Demand Gen campaign. Details about the required minimum budget can be found in the new error details field budgetDailyMinimumErrorDetails . EU political advertising changes These EU political advertising changes have also been made in the v19.2 and v20.1 releases. Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. API calls to create a new campaign will fail with a FieldError.REQUIRED error if this field is not set. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. This change will be announced in advance. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. Performance Max For new PMax campaigns the default value of Campaign.brand_guidelines_enabled is now true . Added the campaign_search_term_view report. This view offers search terms metrics aggregated at the campaign level. This view also introduces Performance Max campaign support for search terms. Added PERFORMANCE_MAX as a new value for the search_term_match_type segment. Planning Added a new method ReachPlanService.ListPlannableUserInterests , which allows advertisers to discover the user interests (affinities and in-markets) supported by ReachPlanService.GenerateReachForecast . The method supports searching for specific user interest types and querying for names and paths. Added AdditionalApplicationInfo to ReachPlanService.ListPlannableUserLists as an optional input field. Added support to AudienceInsightsService.ListAudienceInsightsAttributes to fetch available 1P user lists for the customer ID making the request. Added 1P user lists support to AudienceInsightsService.GenerateAudienceCompositionInsights to fetch insights for audiences targeting a user list. Any request that targets a user list will only return the audience index and is only available for the following AudienceInsightsDimension : AGE_RANGE , GENDER , AFFINITY_USER_INTEREST , IN_MARKET_USER_INTEREST . Updated the audience input type to InsightsAudience for AudienceInsightsService.GenerateTargetingSuggestionMetrics . The new audience input allows an AND-of-ORs combination of user interests, supporting potential reach metrics for more customized audience definitions. Added audience share to TrendInsightMetrics to get the share of an audience for a trend. Added new related categories to KnowledgeGraphAttributeMetadata so users can filter Knowledge Graph Attributes by category. Reports A variety of new metrics are now available for AssetGroupAsset , ChannelAggregateAssetView , and CampaignAggregateAssetView . Additionally, for ChannelAggregateAssetView and CampaignAggregateAssetView , impressions , which was previously zeroed out for Performance Max campaigns, will now report its true value. Made the AssetSet resource selectable with ChangeStatus so users can make get more info about the AssetSet or CampaignAssetSet type resource in one query. Made the CampaignAssetSet resource selectable with ChangeStatus so users can make get more info about the AssetSet or CampaignAssetSet type resource in one query. Added a new segment search_term_targeting_status that can be selected in campaign search term view. Added a new final_url_expansion_asset_view . Added support for metrics value_adjustment and all_value_adjustment in the AssetGroup report. Made AssetGroupAsset segmentable by ad_network_type . Added a new segment landing_page_source that can be used with the landing_page_view resource. Added a new segment search_term_match_source that can be selected in the search term and campaign search term views. Added a new segment match_type that can be selected from the keyword view. Added support for metrics for unique query intent clusters with: clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Added a new click type VEHICLE_ASSETS in the click_view segmentation to track and report clicks related to the ad formats specific to vehicle assets. Smart Bidding Exploration for Target ROAS bidding strategies on Search You can now enable Smart Bidding Exploration on Search campaigns by setting the field target_roas_tolerance_percent_millis in the MaximizeConversionValue and TargetRoas bidding strategies to any value divisible by 1000 between 10000 (10%) and 30000 (30%) inclusive. MaximizeConversionValue bidding strategies will also need the target_roas field set. TargetRoas.target_roas_tolerance_percent_millis is only available for portfolio strategies. See our blog post on Smart Bidding Exploration and help center article . Aggregated diversity reporting is now supported for the following metrics for unique query intent clusters. A time segmented view is available in the Google Ads UI. clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Video Added YouTubeVideoListAsset . Also added Asset#youtube_video_list_asset , which can be used to create link between a campaign and a YouTubeVideoListAsset type. See the Help Center article Use related videos . Added new metadata fields to YouTubeChannelInsights and YouTubeVideoAttributeMetadata . Exposed new click types: VIDEO_RELATED_VIDEOS_CLICK , VIDEO_CHANNEL_CLICK , and PRODUCT_ASSETS . Added the allow_non_skippable_in_stream field to VideoAdInventoryControl to let Video Responsive ads serve as non-skippable in-stream ads. This option is available for campaigns that support mixing the non-skippable format with other formats. Added the Campaign.VideoCampaignSettings.video_ad_sequence and AdGroup.VideoAdGroupSettings.VideoAdSequenceStepSetting fields (read-only). See the Help Center article About video ad sequencing . Added new metadata fields to YouTubeChannelInsights and YouTubeVideoAttributeMetadata . Added the VIDEO_LINEUP criterion type and the video_lineup field to CampaignCriterion and AdGroupCriterion . This feature is available to allowlisted accounts only. Contact your Google business development representative for details. Added a Content Suitability report for both the detail and the group level. See the Help Center article About the 'Content suitability' report . v20.1 (2025-08-06) These EU political advertising changes have also been made in the v19.2 and v21 releases. EU political advertising changes Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. This change will be announced in advance. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. v20 (2025-06-04) The following new features and updates were added in v20. See Upgrade to the latest version for guidance. Assets Added several new metrics and segment columns for the asset_group report. Metrics columns new_customer_lifetime_value all_new_customer_lifetime_value conversions_by_conversion_date all_conversions_by_conversion_date conversions_value_by_conversion_date all_conversions_value_by_conversion_date value_per_conversions_by_conversion_date value_per_all_conversions_by_conversion_date Segment columns ad_network_type conversion_action conversion_action_name conversion_action_category external_conversion_source conversion_attribution_event_type conversion_adjustment conversion_lag_bucket conversion_or_adjustment_lag_bucket new_versus_returning_customers device slot Campaigns Added support for adding and updating campaign-level negative keywords for Performance Max campaigns. Conversions You can now update the google_ads_conversion_customer field on an existing customer to opt in to cross-account conversion tracking, or to change its existing conversion tracking parent to a different manager account. Note: This feature is behind a closed allowlist. To use it, contact your account manager. Added the ClickConversion.user_ip_address field. Google Ads does not support IP address matching for end users in the European Economic Area (EEA), United Kingdom (UK), or Switzerland (CH). Please add logic to conditionally exclude sharing IP addresses from users from these regions. Make sure that you provide users with clear and comprehensive information about the data you collect on your sites, apps, and other properties and get consent where required by law or any applicable Google policies. See the About offline conversion imports page for more details. Demand Gen Added new values to the ad_network_type segment that allow segmenting Demand Gen campaigns by channel: MAPS GMAIL DISCOVER Added metrics for platform-comparable conversions: platform_comparable_conversions_from_interactions_rate platform_comparable_conversions platform_comparable_conversions_value platform_comparable_conversions_value_per_cost platform_comparable_conversions_by_conversion_date platform_comparable_conversions_value_by_conversion_date platform_comparable_conversions_from_interactions_value_per_interaction cost_per_platform_comparable_conversion value_per_platform_comparable_conversion value_per_platform_comparable_conversions_by_conversion_date cost_converted_currency_per_platform_comparable_conversion Recommendations Added support for ShoppingSetting during campaign construction when using GenerateRecommendationsRequest . Added the merchant_center_account_id field to GenerateRecommendationsRequest to indicate when recommendations should be generated for retail, rather than the standard Performance Max campaigns. Planning Added AudienceInsightsDimension.YOUTUBE_LINEUP to replace AudienceInsightsDimension.YOUTUBE_DYNAMIC_LINEUP in AudienceInsightsService and ContentCreatorInsightsService . This new dimension lets you retrieve insights and metadata for YouTube Select (YTS) Lineups. Replaced objects associated with YOUTUBE_DYNAMIC_LINEUP such as DynamicLineupAttributeMetadata and the AudienceInsightsDynamicLineup to align with the broader removal of Dynamic Lineups across Google Ads. This feature is only available to accounts on an allowlist. Added AdditionalApplicationInfo and ApplicationInstance in the AudienceInsightsService , ContentCreatorInsightsService , and ReachPlanService . This feature is only available to accounts on an allowlist. Updated AudienceInsightsService and ContentCreatorInsightsService to provide more detailed insights. You can now segment content creator data by device using the new AudienceInsightsDimension.DEVICE and AudienceInsightsAttribute.device in both services. This feature is only available to accounts on an allowlist. Added additional aggregated video metrics to GenerateCreatorInsightsResponse for more comprehensive content creator analysis: engagement_rate , average_views_per_video , average_likes_per_video , average_shares_per_video , average_comments_per_video , shorts_views_count , shorts_video_count , and is_brand_connect_creator . This feature is only available to accounts on an allowlist. Added sub_country_locations to GenerateCreatorInsightsRequest for the ContentCreatorInsightsService . This allows specifying sub-country geographic locations to refine searches for creator insights. The sub_country_locations field is only supported when using the search_attributes oneof in the criteria field. If sub_country_locations are provided with other criteria types, the request will be invalid. This enables more granular geographical targeting and analysis for content creator insights. This feature is only available to accounts on an allowlist. Added ReachPlanService.ListPlannableUserLists , which returns first-party user lists owned by a customer, and added UserListInfo to the audience targeting options in GenerateReachForecastRequest . This lets you retrieve plannable user lists for a given customer and then generate reach forecasts for campaigns targeting those specific audiences. These enhancements improve tailored reach planning by incorporating your first-party audience data directly into forecasting. Reach forecasting is available to allowlisted accounts only. Videos Added AdFormatType.PAUSE ads served on organic YouTube videos on TV screens, which is included in reporting. These ads are displayed directly next to the static video frame on the pause screen. This does not include Demand Gen video ads displayed on the ad panel below or on top of a paused organic video, which are reported under AdFormatType.INFEED . v19.2 (2025-08-06) These EU political advertising changes have also been made in the v20.1 and v21 releases. EU political advertising changes Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. Wait for the announcement of this change. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. v19.1 (2025-04-16) The following features and changes were added in v19.1. Assets Added an asset_coverage field for AssetGroup that returns information about gaps in your asset group . Contains a subfield ad_strength_action_items which returns a list of actions that an advertiser can take to improve the ad strength of an asset group. Campaigns You can now rate or provide feedback for leads in Local Service Campaigns . As part of this change, v19.1 Added a new service named LocalServicesLeadService . You can use the ProvideLeadFeedback method to upload rating and feedback for leads. Added a new field named lead_feedback_submitted to LocalServicesLead to help determine if feedback was submitted to a lead. Added a new metric column biddable_cohort_app_post_install_conversions for App campaigns. Demand Gen Additional methods were introduced in the Planning services to support Demand Gen. Added support for AdGroup-level Channel Controls for Demand Gen campaigns . You can select a predefined general grouping of channels, or a subset of channels using the demand_gen_ad_group_settings field. The following channels are supported in the current release: YouTube In-Stream YouTube In-Feed YouTube Shorts Discover Gmail Display Exposed a new asset type for TALL_PORTRAIT_MARKETING_IMAGE . This asset type relates to the tall_portrait_marketing_images field of the Demand Gen Multi Asset Ad format . Change History Added support for three more resource types into ChangeStatusResourceType : CAMPAIGN_BUDGET ASSET_SET CAMPAIGN_ASSET_SET You can retrieve these three finer-grained types from the change_status report. Conversions You can now set the google_ads_conversion_customer field while creating a new customer using the Google Ads API. This was previously a read-only field. NOTE: This feature is behind a closed allowlist. To use it, contact your account manager. Note: This feature is behind a closed allowlist. To use it, contact your account manager. You can now specify the type of the customer associated with the conversion when uploading offline conversions. A new session_attributes field was introduced for ClickConversion . Local Services Ads Added a new RPC ProvideLeadFeedback to LocalServicesLeadService to provide feedback on the quality of LocalServicesLead . Added a new field lead_feedback_submitted to the LocalServicesLead resource that confirms if feedback was provided for a specific resource. Planning services Added support for Target frequency monthly forecasts in ReachPlanService.GenerateReachForecast . Developers can set TargetFrequencyTimeUnit.MONTHLY in TargetFrequencySettings when using the TARGET_FREQUENCY plannable product code to generate a Target frequency monthly reach forecast. Added a new method ReachPlanService.GenerateConversionRates , which allows advertisers to request suggested conversion rates for supported plannable products. Demand Gen forecasting in ReachPlanService.GenerateReachForecast : Developers can now request reach forecasts for Demand Gen campaigns. Developers can use the new DEMAND_GEN_MAX_CONVERSIONS plannable product code to generate Demand Gen reach forecasts. Added a new conversion_rate field that allows developers requesting Demand Gen reach forecasts to provide a conversion rate. Suggested conversion rates can be retrieved using the new ReachPlanService.GenerateConversionRates method. This field is required for Demand Gen forecasting requests. It is not supported for other plannable products. Added a new conversions field to returned forecasts. This field contains the number of conversions at a given point on the reach curve. Conversions are only supported for the DEMAND_GEN_MAX_CONVERSIONS plannable product. Recommendations The new ad_strength field is available for ImprovePerformanceMaxAdStrengthRecommendation , which returns the current ad strength score of the asset group associated with the recommendation. Shopping You can now override brand exclusions for Shopping ads in Performance Max campaigns. This is exposed through a new pmax_campaign_settings field at the campaign level, and it works only for PMax campaigns for Retail . A new CampaignError.BRAND_TARGETING_OVERRIDES_NOT_SUPPORTED error will be thrown if you attempt to set this field for an incompatible campaign type. Videos Added read-only support for Audio Ads. See Google Ads Help Center to learn about this feature. This change exposes: A new AdvertisingChannelSubType named YOUTUBE_AUDIO . A new AdGroupType named YOUTUBE_AUDIO . A new ad format enumeration named YOUTUBE_AUDIO_AD , and its corresponding YouTubeAudioAdInfo fields. Added new metrics and segments to query reach metrics with demo adjustment. As part of these changes, Two new metrics columns named coviewed_impressions and primary_impressions were introduced. Two new segments named adjusted_age_range and adjusted_gender were introduced. If either of the two new segments are selected alongside a reach metric field ( coviewed_impressions , primary_impressions , unique_users , or average_impression_frequency_per_user ), the other segment must be selected as well to retrieve valid stats for these columns. This feature is currently available only for allowlisted customers. v19 (2025-02-26) The following features and changes were added in v19. See Upgrade to the latest version for guidance. Account Management Added the following values to CustomerError to account for upcoming changes: CREATION_DENIED_FOR_POLICY_VIOLATION CREATION_DENIED_INELIGIBLE_MCC Ads Added DemandGenMultiAssetAdInfo.tall_portrait_marketing_images to support portrait image assets with aspect ratio 9:16 in Demand Gen ads. Assets (For allowlisted accounts only) Added support for message assets through Asset.business_message_asset , BusinessMessageAsset and the following enums and errors. Enums: AssetFieldType.BUSINESS_MESSAGE AssetType.BUSINESS_MESSAGE BusinessMessageCallToActionType BusinessMessageProvider Errors: AssetError.CUSTOMER_NOT_ON_ALLOWLIST_FOR_WHATSAPP_MESSAGE_ASSETS ResourceLimitType BUSINESS_MESSAGE_ASSET_LINKS_PER_CUSTOMER WHATSAPP_BUSINESS_MESSAGE_ASSET_LINKS_PER_CAMPAIGN WHATSAPP_BUSINESS_MESSAGE_ASSET_LINKS_PER_AD_GROUP Added AssetAutomationType.GENERATE_LANDING_PAGE_PREVIEW to support automatically generating a landing page preview. AssetAutomationType.GENERATE_SHORTER_YOUTUBE_VIDEOS is now opted-in by default for Demand Gen video responsive ads . (For allowlisted accounts only; allowlist is currently closed) Added Asset.app_deep_link_asset and AppDeepLinkAsset . Conversions Conversion goals LifecycleGoalValueSettings.high_lifetime_value is out of beta and now mutable. Added CustomerLifecycleGoal.owner_customer to show the resource name of the customer which owns the customer lifecycle goal. Deprecated ConversionActionType.SALESFORCE . Feeds Removed all feed-related entities, such as Feed , FeedMapping , FeedService , AdGroupFeed , feed_placeholder_view , etc. Users should now use assets to achieve the same purpose. Hotel & Travel Made min_days and max_days of ValueRuleItineraryAdvanceBookingWindow an optional field to allow specifying 0 as a value. This supports targeting for travel searches that happen today. Performance Max (For allowlisted accounts only) Brand guidelines Made Campaign.brand_guidelines_enabled mutable only when creating a Performance Max campaign. This is incompatible with Performance Max for travel goals . To enable brand guidelines for existing Performance Max campaigns, use a newly added CampaignService.EnablePMaxBrandGuidelines . Disabling brand guidelines is not supported. Added Campaign.brand_guidelines and BrandGuidelines to allow setting the brand's colors and font family. New error values: BatchJobError.CAMPAIGN_AND_CAMPAIGN_ASSET_TRANSACTION_FAILURE BrandGuidelinesMigrationError BRAND_GUIDELINES_ALREADY_ENABLED CANNOT_ENABLE_BRAND_GUIDELINES_FOR_REMOVED_CAMPAIGN BRAND_GUIDELINES_LOGO_LIMIT_EXCEEDED CANNOT_AUTO_POPULATE_BRAND_ASSETS_WHEN_BRAND_ASSETS_PROVIDED AUTO_POPULATE_BRAND_ASSETS_REQUIRED_WHEN_BRAND_ASSETS_OMITTED TOO_MANY_ENABLE_OPERATIONS CampaignError BRAND_GUIDELINES_NOT_ENABLED_FOR_CAMPAIGN BRAND_GUIDELINES_MAIN_AND_ACCENT_COLORS_REQUIRED BRAND_GUIDELINES_COLOR_INVALID_FORMAT BRAND_GUIDELINES_UNSUPPORTED_FONT_FAMILY BRAND_GUIDELINES_UNSUPPORTED_CHANNEL CANNOT_ENABLE_BRAND_GUIDELINES_FOR_TRAVEL_GOALS CUSTOMER_NOT_ALLOWLISTED_FOR_BRAND_GUIDELINES Added AssetAutomationType.GENERATE_ENHANCED_YOUTUBE_VIDEOS to support automatically generating enhanced video assets for Performance Max campaigns. Planning (For allowlisted accounts only) Added ContentCreatorInsightsService.GenerateTrendingInsights which allows users to see trending content topics on YouTube for given audience definitions. Added GenerateCreatorInsightsRequest.country_locations[] to specify countries to search for the given criteria Added GenerateCreatorInsightsRequest.search_brand to specify a brand to search for creators Added new fields to YouTubeChannelInsights to provide additional channel information for search_channels requests: channel_url channel_description top_videos Added new metadata fields to AudienceInsightsAttributeMetadata : youtube_video_metadata user_interest_attribute_metadata knowledge_graph_attribute_metadata Videos Following the release of DataLinkService.CreateDataLink , we added the following methods to allow for mutating previously created data links: RemoveDataLink for removing data links in a Google Ads account UpdateDataLink for accepting, rejecting and revoking data links in a Google Ads account Removed support for VIDEO_OUTSTREAM from the following enums: AdType AdvertisingChannelSubType AdGroupType Archived release notes See Sunsetted versions for archived release notes. Send feedback Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-12-03 UTC. Need to tell us more? [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-12-03 UTC."],[],[]] Blog Visit our blog for important announcements. Client Libraries Use our officially supported client libraries. YouTube Access our video contents. Discord Join the Google Ads Discord server. Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.mediationGroups.mediationAbExperiments
REST Resource: accounts.mediationGroups.mediationAbExperiments  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference REST Resource: accounts.mediationGroups.mediationAbExperiments Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag Mediation A/B experiments allow testing different mediation group configurations to see which performs better. An experiment includes both control and treatment mediation lines with a specified percentage of traffic directed to the treatment. The state of the experiment progresses through running, ended, and expired phases. The VariantLeader field indicates which variant is performing better or if there is insufficient data. Available methods allow for creating and stopping a mediation A/B experiment. Resource: MediationAbExperiment JSON representation ExperimentMediationLine JSON representation ExperimentState VariantLeader Methods Resource: MediationAbExperiment The mediation A/B experiment. JSON representation { "name" : string , "displayName" : string , "experimentId" : string , "treatmentTrafficPercentage" : string , "treatmentMediationLines" : [ { object ( ExperimentMediationLine ) } ] , "controlMediationLines" : [ { object ( ExperimentMediationLine ) } ] , "state" : enum ( ExperimentState ) , "startTime" : string , "endTime" : string , "mediationGroupId" : string , "variantLeader" : enum ( VariantLeader ) } Fields name string Resource name for this experiment. The format is accounts/{publisherId}/ mediationGroups/{mediationGroupId}/mediationAbExperiment/ {mediation_group_experiment_id}. For example: accounts/pub-9876543210987654/mediationGroups/0123456789/ mediationAbExperiment/12345 displayName string The display name for the mediation A/B experiment. experimentId string Output only. Unique identifier for the mediation A/B experiment. It is an output only property. treatmentTrafficPercentage string ( int64 format) The percentage of the mediation A/B experiment traffic that will be send to the treatment (variant B). The remainder is sent to the control (variant A). The percentage is expressed as an integer in the inclusive range of [1,99]. See https://support.google.com/admob/answer/9572326 for details. treatmentMediationLines[] object ( ExperimentMediationLine ) The experiment mediation lines created for the treatment. They will be used for serving when the experiment status is RUNNING. controlMediationLines[] object ( ExperimentMediationLine ) Output only. The experiment mediation lines for control. They are inherited from the parent mediation group. It is an output only field. state enum ( ExperimentState ) Output only. The state of the experiment. It is an output only field. startTime string ( Timestamp format) Output only. The time at which the experiment was started (in UTC). A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z" . endTime string ( Timestamp format) Output only. The time at which the experiment was ended or target to end (in UTC). A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z" . mediationGroupId string Output only. The mediation group id this experiment belongs to. This can be used for filtering the experiments in the list experiments API. variantLeader enum ( VariantLeader ) Output only. The variant leader for the experiment according to some key metrics. ExperimentMediationLine The mediation group line for the experiment. It will be used for serving during the run of the experiment. JSON representation { "mediationGroupLine" : { object ( MediationGroupLine ) } } Fields mediationGroupLine object ( MediationGroupLine ) The mediation group line used by the experiment. ExperimentState Status of the experiment. This is a read-only field. The experiment can be in one of the three states and transitions as mentioned below: 1. Running: When the experiment is created, it is put into the running state. Both the control and treatment mediation group lines are served according to the treatmentTrafficPercentage specified. Ended: The experiment ends after 90 days if the winning variant isn't chosen. Expired: If the winning variant is chosen or it has been 30 days since the experiment ended, the experiment goes into the EXPIRED state and the variant B is deleted. Enums EXPERIMENT_STATE_UNSPECIFIED Default for an unset field. Do not use. EXPIRED The experiment has expired. RUNNING The experiment is running and thus used in serving. ENDED The experiment is ended, but not yet expired. Serving continues in the original configurations while the experiment is ready to call an action. VariantLeader Variant leader for the experiment. Enums VARIANT_LEADER_UNSPECIFIED Default value of the enum. Do not use. CONTROL The control leading the experiment. TREATMENT The treatment leading the experiment. INSUFFICIENT_DATA Collected data (impressions) are insufficient to determine a leader. TOO_EARLY_TO_CALL Experiment hasn't run long enough to determine a leader. NO_VARIANT_LEADER Neither variant is a decisive winner in the observed data. Methods create Create an A/B testing experiment for a specified AdMob account and a mediation group. stop Stop the mediation A/B experiment and choose a variant. Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["The core content details a mediation A/B experiment within AdMob, focusing on its structure and lifecycle. It outlines that an experiment has a `treatment` and `control`, each with `mediation lines`. The `treatmentTrafficPercentage` defines traffic allocation, while `state` indicates if it's `RUNNING`, `ENDED`, or `EXPIRED`. The `variantLeader` field shows if `TREATMENT` or `CONTROL` is performing better or the results are insufficient. The experiment can be `create` and `stop`, being able to choose a variant.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://developers.google.com/google-ads/api/docs/release-notes
Release notes  |  Google Ads API  |  Google for Developers Skip to main content Google Ads API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in Guides Reference Libraries and samples Policies Support Google Ads API Guides Reference Libraries and samples Policies Support Google Ads API overview Release notes Video guides Overview Authentication & authorization Introduction Web flow with the OAuth playground Best practices Performance Max Introduction Assets Campaign and budget Retail Asset groups Listing group filters Asset group assets Campaign conversion goals Enhanced conversions for web Introduction Usage flow Code example Enhanced Conversions for Leads Introduction Usage Flow GAQL Introduction Query structure & grammar segmentation GoogleAdsRow Field Metadata Fields and Clauses Field compatibility REST API Introduction Authorization with rest SearchStream & search Best practices Retrieving information efficiently Mutating information efficiently Advanced information retrieval Account change history The Basics Change Status Optimization Score & Recommendations Overview Optimization score Recommendations Overview Take actions Apply parameters Take actions in bulk Error handling & testing Best practices Smart Bidding Overview & getting started MaximizeConversions & MaximizeConversionValue Logging & Monitoring Introduction Logging & Monitoring in the Cloud Sending client logs to Google Cloud Integration Testing Introduction Testing in practice Testing Best Practices Authentication & Authorization Introduction Web Flow with the OAuth Playground Best Practices GAQL Introduction Query Structure & Grammar segmentation GoogleAdsRow Field metadata Fields and clauses Field Compatibility SELECT Requirement Date Range Validation Filtering Conditions Validating Queries REST API Introduction Authorization with REST SearchStream & Search Best Practices Retrieving Information Efficiently Mutating Information Efficiently Advanced Information Retrieval Account change history The Basics Change Status Optimization score & recommendations Overview Deep Dive: Optimization Score Deep Dive: Recommendations Recommendations: Take Actions Recommendations: Apply Parameters Recommendations: Take Actions In Bulk Error Handling & Testing Best Practices Smart Bidding Overview & Getting Started MaximizeConversions & MaximizeConversionValue Logging & Monitoring Introduction Logging & Monitoring in the Cloud Sending Client Logs to Google Cloud Get started Introduction Quickstart Handle errors Common errors Next steps Authentication and authorization Overview Access model overview Service account workflow User authentication workflow Overview Single-user authentication workflow Multi-user authentication workflow Handling two-step verification OAuth 2.0 internals Set up a Google API Console project for authorization Credential management Basic concepts Overview API structure Versioning Changing objects Retrieving objects Resource metadata Call structure Mutates Overview Resource mutates Bulk mutates Best practices Cloud-managed access levels Google Ads management Manage accounts Overview Create an account Link to manager accounts List accessible accounts Get account hierarchy Manage user access Manage user access invitations Link product accounts Link YouTube Change status Change event Advertiser identity verification Manage assets Overview Creation and usage Location assets Automated assets Asset automation settings Business message assets Reporting Create assets with generative AI (closed beta) Asset generation (closed beta) Asset generation errors (closed beta) Asset generation code examples (closed beta) Manage billing Billing overview Billing setup Account budget Invoice Create and manage campaigns Explore campaign types Overview Create campaigns Create ad groups Ad management Overview Ad types Upgraded URLs Overview Fields Supported entities Valuetrack parameters for Upgraded URLs Reports Serving URL expansion rules Dynamic Search Ads Overview Create DSAs DSA page feeds Reporting Hotel Ads Overview Create campaign Create ad group Create ad Create listing groups Bidding Overview Assign strategy Set bids Adjust bids Reporting Travel Feeds for Search Ads Things to do ads Overview Create campaign Create ad group Create ad Create listing groups Reporting Responsive display ads Overview Create ads Retrieve ads Responsive search ads Overview Create ads Mutate ads Ad customization Retrieve ads Shopping Ads Overview Link Merchant Center Create campaign Create ad group Create ad Create listing groups Reporting Uploaded display ads Overview Create uploaded display ads Uploaded HTML5 ads Budgets Overview Create budget Share budget Assign budget Remove budget Track performance Restrictions & errors Bidding Overview Strategy types Strategy status Portfolio and standard bidding strategies Cross-account bidding strategies Ad group level target overrides Set bids manually Manage bid modifiers Create seasonality adjustments Create data exclusions Campaign Drafts Targeting Overview Criteria Shared sets Bid modifiers Location targeting Targeting settings Performance Max campaigns Overview Get started Business goals Online sales or lead generation Online sales with a product feed Travel goals Concepts Campaign setup Create a budget Create a campaign Conversion goals Create campaign criteria ValueTrack parameters Asset group setup Assets Asset requirements Asset groups Asset group signals Listing groups Reporting Overview Campaign Reporting Asset Group Reporting Asset Reporting Retail Campaign Reporting Campaign Criterion Reporting Upgrade to Performance Max Overview Check upgrade eligibility Create a campaign based on an existing campaign Enhance a campaign Compare performance with an existing campaign Complete the upgrade Best practices Structure requests Batch processing Optimizations Troubleshooting Common errors when working with Performance Max Resources and examples Code examples Add performance max campaign Add performance max retail campaign Add performance max product listing group tree Add performance max for travel goals campaign App campaigns Overview Create campaign Create ad group & ad Code example Reporting Demand Gen campaigns Overview Create campaign Audience targeting Campaigns with product feeds Channel controls Reporting & optimization Local Services campaigns Smart campaigns Overview Get suggestions Create budget Create campaign and campaign setting Create campaign criteria Create ad group and ad group ad Send mutate request Reporting Search campaigns Getting started AI Max for Search campaigns Getting started Video campaigns Manage conversions Overview Conversion action categories Getting started Manage offline conversions Manage online conversions Manage call conversions Manage store sales conversions Modify uploaded conversions Upload conversion adjustments Conversion value rules Custom conversion variables Conversion goals Overview Customer goals Campaign goals Lifecycle goals Monitor Upload Health Reporting Troubleshooting Manage audiences Overview Audiences Get started with audience segments Visitors to your website Visitors to specific pages Visitors who took specific actions Multiple user lists Customer match Get started Manage Troubleshoot Custom audiences Lookalike segments Sample scenario Overview Creating the rule item groups Creating the user list Dynamic Remarketing Overview Prerequisites Asset-based Dynamic Remarketing Merchant center-based Dynamic Remarketing Batch processing Overview Usage flow Using temporary IDs Listing group filters Best practices & limitations Optimize your ads Optimization & recommendations Keyword planning Overview Generate keyword ideas Generate ad group themes Generate historical metrics Generate forecast metrics Experiments Overview Create experiments Create experiment arms Experiment operations Reporting on experiments Async errors Reach forecasting Overview Concepts Authenticate Specify a media plan Generate a curve Bid simulations Overview Prerequisites Retrieve bid simulations Report and monitor performance Reporting Overview Use case Criteria metrics Segmentation Zero metrics Labels Streaming Paging Reports in the UI Mapping valuetrack parameters with report fields Query language Overview Query grammar Query structure Date ranges Case sensitivity Ordering and limiting results Interactive query builder Query Validator Query Cookbook Audience and creator insights Overview Audience insights YouTube creator insights Develop applications Test and troubleshoot your application Best practices Overview API limits and quotas System limits Troubleshooting Testing Test accounts Developer token reset Error debugging Error types Understand API errors Common errors Partial failures Warnings Policy exemption request Overview Ads Keywords Productionize your application Overview Secure credentials Access levels Logging Monitoring Manage data efficiently Rate limits Shared aliases Stay updated Home Products Google Ads API Send feedback Release notes Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag Google Ads API v22 introduces the AssetGenerationService for generating text and image assets using generative AI. New bidding goals without a target CPA or ROAS are added for App campaigns to optimize for installs or total value. Demand Gen campaigns now support the TargetCPC bidding strategy and asset automation for generating design variations and videos from existing assets. Performance Max campaigns gain new AssetAutomationType values for image enhancement and extraction, along with new segments for reporting. Planning services include updates for user lists, partner audiences, YouTube metrics, trend insights, and support for parental status and income ranges in AudienceInsightsService. v22 (2025-10-15) The following new features and updates were added in v22. See Upgrade to the latest version for guidance. Assets Added LANDING_PAGE_PREVIEW as a new image asset field type. Introduced the AssetGenerationService (Beta): This service allows generating text and image assets using generative AI. This service is initially available only to a limited set of closed beta participants. GenerateText : Generates text based on inputs like final URL, freeform prompts, keywords, and existing campaign context. GenerateImages : Generates images based on inputs like final URL, freeform prompts, existing campaign context, or by recontextualizing existing product images. Errors during asset generation are returned with codes from AssetGenerationErrorEnum . Campaigns Added new bidding goals for App campaigns for installs (ACi) to optimize without specifying a target, useful for rapid scaling or when determining the right target is challenging. In AppCampaignBiddingStrategyGoalType : OPTIMIZE_IN_APP_CONVERSIONS_WITHOUT_TARGET_CPA : Use with standard Maximize Conversions . OPTIMIZE_TOTAL_VALUE_WITHOUT_TARGET_ROAS : Use with standard Maximize Conversion Value . Added support for the fixed share of voice bidding strategy type . Added Campaign.feed_types , showing the types of feeds attached to a campaign. For Performance Max campaigns, this can indicate the business vertical, such as MERCHANT_CENTER_FEED for retail. Allowed attaching NEGATIVE_KEYWORDS shared sets to MULTI_CHANNEL (for App campaigns) and LOCAL campaigns. Demand Gen Added the TargetCPC bidding strategy for Demand Gen campaigns. This strategy sets bids to maximize clicks at the configured target cost-per-click (CPC). Set the campaign-level target CPC using Campaign.target_cpc . Override at the ad group level using AdGroup.target_cpc_micros . Added a new AssetAutomationType : GENERATE_DESIGN_VERSIONS_FOR_IMAGES : Available for DemandGenMultiAssetAds . If enabled, this adds design elements and embeds text assets into image assets to create new image assets with different aspect ratios. New DemandGenMultiAssetAds are opted in by default. Added a new AssetAutomationType : GENERATE_VIDEOS_FROM_OTHER_ASSETS : Available for DemandGenMultiAssetAds . If enabled, it generates videos using other assets like images and text. These videos can then be used to create new DemandGenVideoResponsiveAds . New DemandGenMultiAssetAds are opted in by default. Renamed the field BudgetPerDayMinimumErrorDetails.minimum_bugdet_amount_micros to minimum_budget_amount_micros . General Added a limit of 10,000 operations per AddBatchJobOperations request. Updated handling for the page_size field in ListBatchJobResultsRequest : If page_size is not set or is 0, it now defaults to the maximum of 1,000 (previously returned INVALID_PAGE_SIZE ). If page_size exceeds 1,000, the API now returns an INVALID_PAGE_SIZE error (previously silently capped at 1,000). Added a new error code: QuotaError.PAYMENTS_PROFILE_ACTIVATION_RATE_LIMIT_EXCEEDED to indicate when the payment profile activation rates limit has been exceeded. Performance Max Added new AssetAutomationType values for Performance Max campaigns: GENERATE_IMAGE_ENHANCEMENT : Enables automatic creation of enhanced images such as auto-cropping. Enabled by default. GENERATE_IMAGE_EXTRACTION : Enables automatically sourcing images from final URLs. Defaults to the account-level Dynamic Image Extension setting. Removed AssetPerformanceLabel for Performance Max campaigns. The functionality of the removed Campaign.url_expansion_opt_out is now managed by setting the AssetAutomationType FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION in AssetAutomationSetting . Added new segments for Performance Max campaigns. Each of these segments is only available for Performance Max campaigns and won't return data when any other campaign type is selected. ad_using_product_data : Indicates if an ad uses product data from a Google Merchant Center feed. ad_using_video : Indicates if an ad uses a video asset. Planning In UserListCrmDataSourceType , added the value THIRD_PARTY_PARTNER_DATA . Added new error codes related to partner audiences: PARTNER_AUDIENCE_SOURCE_NOT_SUPPORTED_FOR_USER_LIST_TYPE PARTNER_AUDIENCE_TYPE_NOT_SUPPORTED_FOR_USER_LIST_TYPE COMMERCE_PARTNER_NOT_ALLOWED PARTNER_AUDIENCE_INFO_NOT_SUPPORTED_FOR_USER_LIST_TYPE PARTNER_MANAGER_ACCOUNT_DISALLOWED PARTNER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA ADVERTISER_TOS_NOT_ACCEPTED ADVERTISER_PARTNER_LINK_MISSING ADVERTISER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA ACCOUNT_SETTING_TYPE_NOT_ALLOWED_FOR_USER_LIST_TYPE INVALID_CAMPAIGN_TYPE_FOR_THIRD_PARTY_PARTNER_DATA_LIST Added is_active_live_stream_creator to YouTubeMetrics . This is returned by ContentCreatorInsightsService.GenerateCreatorInsights and indicates if a creator published a livestream in the past 90 days. Added a new PlannableUserListMetadata message that contains UserListCrmDataSourceType in PlannableUserList . This message is returned by 'ReachPlanService.ListPlannableUserLists' to show if a CRM user list data source is either FIRST_PARTY or THIRD_PARTY_PARTNER_DATA . In ReachPlanService , added the field trueview_views , which replaces the views field. In TrendInsight , added support for related_videos and related_creators . Also added video properties metadata and publish dates in YouTubeVideoAttributeMetadata.video_properties and YouTubeVideoAttributeMetadata.publish_date . AudienceInsightsService.GenerateInsightsFinderReport now supports parental_status and income_ranges , and more complex AND/OR combinations of topics and audiences. Reports Added two new click types: CLICK_TO_MESSAGE_THIRD_PARTY_CLICK and CLICK_TO_MESSAGE_LANDING_PAGE_CLICK . AssetGroupAsset is now segmentable by device , conversion_action , conversion_action_name , and conversion_action_category . AdGroupAdAssetView and AdGroupAdAssetCombinationView now fully support performance and conversion metrics for RESPONSIVE_SEARCH_AD . Previously, only impressions were returned for this ad type in these views. To facilitate Smart Bidding Exploration, the following metrics are now segmentable by date fields ( date , month , quarter , week , year ): clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Added a new resource: TargetingExpansionView , which reports metrics for expansions over manual targeting, such as keywordless expansion for AI Max for Search Campaigns. Added new segments for PMax campaigns. See Performance Max updates . Shopping Fixed the campaign and ad group scoping of metrics in the ShoppingProduct resource. Unified Goals Added support for customer retention goals to optimize for re-engaging existing customers. Configure targeting using CampaignRetentionGoalSettings.target_option : TARGET_SPECIFIC : Only uses users from user lists associated with the campaign. (Currently allowlist only). TARGET_ALL (Default): Targets all users for re-engagement. Video Renamed several video-views related metrics: average_cpv is now trueview_average_cpv video_view_rate is now video_trueview_view_rate video_views is now video_trueview_views video_view_rate_in_feed is now video_trueview_view_rate_in_feed video_view_rate_in_stream is now video_trueview_view_rate_in_stream video_view_rate_shorts is now video_trueview_view_rate_shorts Added metrics for video ad watch time: video_watch_time_duration_millis : Total watch time. average_video_watch_time_duration_millis : Average watch time per impression. v21 (2025-08-06) See Upgrade to the latest version for guidance. AI Max for Search campaigns You can now use the ai_max_setting.enable_ai_max field of the Campaign to enable AI Max for Search campaigns. AI Max for Search campaigns expands a Search campaign's reach through search term matching and allows controlling whether targeting and creative controls serve when set. Text asset automation and brand list controls that were set in previous version requests will still be respected until AI Max for Search campaigns is explicitly toggled and turned off. Campaign.ai_max_setting.bundling_required can be used to determine if AI Max for Search campaigns must be enabled to respect or modify text asset automation and brand list controls. AdGroup.ai_max_ad_group_setting.disable_search_term_matching can be used to disable search term matching when a parent campaign has enabled AI Max for Search campaigns. See our blog post Unlock next-level performance with AI Max for Search campaigns . Added CampaignError.AI_MAX_MUST_BE_ENABLED , which is thrown for Search campaigns when you opt in to FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION without enabling AI Max for Search campaigns on the campaign. Added support for applying targeting controls at the ad group level in AI Max for Search campaigns. You can now add the following criteria to ad groups: Brand lists Locations Webpages (URL rules) Added the ai_max_search_term_ad_combination_view to report on performance for combinations of search terms, headlines, and landing pages. This view shows which search queries triggered your ads and how those specific combinations performed. A future release will include an additional view that also includes Performance Max data. If you want to avoid migrating your implementation to get Performance Max data, consider waiting for that release. Added AI_MAX as a new value for the search_term_match_type segment. Assets Added the fields terms_and_conditions_text , terms_and_conditions_uri , promotion_barcode_info , and promotion_qr_code_info in PromotionAsset . Barcode and QR code fields are located within the promotion_trigger oneof. See the Help Center article About promotion assets . Added FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION to AssetAutomationTypeEnum . With this setting, you can control the automatic generation of text assets and landing pages from the final URL in Search campaigns. Added a new service AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset to remove automatically created assets from Campaign . This service supports removal of the final URL expansion asset only. Added DESCRIPTION_PREFIX to the ServedAssetFieldType enum. This corrects an issue where the served_asset_field_type in ad_group_ad_asset_combination_view was UNKNOWN for assets serving as a description prefix. Campaigns Added a new enum value MISSING_LOCATION_TARGETING to CampaignPrimaryStatusReason . This new status reason will be returned only for location-restricted campaigns which don't specify location targeting. For location-restricted campaigns, any attempt to add location targeting outside the allowed area will result in the criterion error LOCATION_TARGETING_NOT_ELIGIBLE_FOR_RESTRICTED_CAMPAIGN . Added support for third-party integration partners on the VideoCustomer.third_party_integration_partners and Campaign.third_party_integration_partners levels. See the Help Center article Track app conversions with third-party app analytics . You can now set the advertising_partner_ids field for an existing Campaign . Previously, this field could only be set for a new campaign during its creation. The field is still immutable after being set. By using a shared list of type TYPE_PLACEMENT_LIST defined at the manager account level, advertisers can now use CustomerNegativeCriterion criteria to exclude a list of placements in individual advertiser customer accounts. Added DESCRIPTION_PREFIX to the ServedAssetFieldType enum. This corrects an issue where the served_asset_field_type in the ad_group_ad_asset_combination_view was UNKNOWN for assets serving as a description prefix. Added support for the field target_roas_tolerance_percent_millis in the MaximizeConversionValue and TargetRoas bidding strategies. TargetRoas.target_roas_tolerance_percent_millis is only available for portfolio strategies, which is only available for Search campaigns. Changed a ProductGroup error code. For requests with a partial failure enabled, LISTING_GROUP_ERROR_IN_ANOTHER_OPERATION will be returned instead of INVALID_LISTING_GROUP_HIERARCHY . Added a new resource LocationInterestView that summarizes the performance of adgroup location interest criteria. Conversions Added ENGAGED_VIEW as a new value for the conversion_attribution_event_type segment. Customers will no longer have access to debug_enabled mode in ConversionUploadService . This field, if set to TRUE , was earlier used to distinguish the CLICK_NOT_FOUND error from SUCCESS for enhanced conversions for leads imports. Demand Gen Added an error code CampaignBudgetError.BUDGET_BELOW_DAILY_MINIMUM . In the future, this error will be returned when attempting to set a very low budget amount for a Demand Gen campaign. Details about the required minimum budget can be found in the new error details field budgetDailyMinimumErrorDetails . EU political advertising changes These EU political advertising changes have also been made in the v19.2 and v20.1 releases. Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. API calls to create a new campaign will fail with a FieldError.REQUIRED error if this field is not set. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. This change will be announced in advance. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. Performance Max For new PMax campaigns the default value of Campaign.brand_guidelines_enabled is now true . Added the campaign_search_term_view report. This view offers search terms metrics aggregated at the campaign level. This view also introduces Performance Max campaign support for search terms. Added PERFORMANCE_MAX as a new value for the search_term_match_type segment. Planning Added a new method ReachPlanService.ListPlannableUserInterests , which allows advertisers to discover the user interests (affinities and in-markets) supported by ReachPlanService.GenerateReachForecast . The method supports searching for specific user interest types and querying for names and paths. Added AdditionalApplicationInfo to ReachPlanService.ListPlannableUserLists as an optional input field. Added support to AudienceInsightsService.ListAudienceInsightsAttributes to fetch available 1P user lists for the customer ID making the request. Added 1P user lists support to AudienceInsightsService.GenerateAudienceCompositionInsights to fetch insights for audiences targeting a user list. Any request that targets a user list will only return the audience index and is only available for the following AudienceInsightsDimension : AGE_RANGE , GENDER , AFFINITY_USER_INTEREST , IN_MARKET_USER_INTEREST . Updated the audience input type to InsightsAudience for AudienceInsightsService.GenerateTargetingSuggestionMetrics . The new audience input allows an AND-of-ORs combination of user interests, supporting potential reach metrics for more customized audience definitions. Added audience share to TrendInsightMetrics to get the share of an audience for a trend. Added new related categories to KnowledgeGraphAttributeMetadata so users can filter Knowledge Graph Attributes by category. Reports A variety of new metrics are now available for AssetGroupAsset , ChannelAggregateAssetView , and CampaignAggregateAssetView . Additionally, for ChannelAggregateAssetView and CampaignAggregateAssetView , impressions , which was previously zeroed out for Performance Max campaigns, will now report its true value. Made the AssetSet resource selectable with ChangeStatus so users can make get more info about the AssetSet or CampaignAssetSet type resource in one query. Made the CampaignAssetSet resource selectable with ChangeStatus so users can make get more info about the AssetSet or CampaignAssetSet type resource in one query. Added a new segment search_term_targeting_status that can be selected in campaign search term view. Added a new final_url_expansion_asset_view . Added support for metrics value_adjustment and all_value_adjustment in the AssetGroup report. Made AssetGroupAsset segmentable by ad_network_type . Added a new segment landing_page_source that can be used with the landing_page_view resource. Added a new segment search_term_match_source that can be selected in the search term and campaign search term views. Added a new segment match_type that can be selected from the keyword view. Added support for metrics for unique query intent clusters with: clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Added a new click type VEHICLE_ASSETS in the click_view segmentation to track and report clicks related to the ad formats specific to vehicle assets. Smart Bidding Exploration for Target ROAS bidding strategies on Search You can now enable Smart Bidding Exploration on Search campaigns by setting the field target_roas_tolerance_percent_millis in the MaximizeConversionValue and TargetRoas bidding strategies to any value divisible by 1000 between 10000 (10%) and 30000 (30%) inclusive. MaximizeConversionValue bidding strategies will also need the target_roas field set. TargetRoas.target_roas_tolerance_percent_millis is only available for portfolio strategies. See our blog post on Smart Bidding Exploration and help center article . Aggregated diversity reporting is now supported for the following metrics for unique query intent clusters. A time segmented view is available in the Google Ads UI. clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Video Added YouTubeVideoListAsset . Also added Asset#youtube_video_list_asset , which can be used to create link between a campaign and a YouTubeVideoListAsset type. See the Help Center article Use related videos . Added new metadata fields to YouTubeChannelInsights and YouTubeVideoAttributeMetadata . Exposed new click types: VIDEO_RELATED_VIDEOS_CLICK , VIDEO_CHANNEL_CLICK , and PRODUCT_ASSETS . Added the allow_non_skippable_in_stream field to VideoAdInventoryControl to let Video Responsive ads serve as non-skippable in-stream ads. This option is available for campaigns that support mixing the non-skippable format with other formats. Added the Campaign.VideoCampaignSettings.video_ad_sequence and AdGroup.VideoAdGroupSettings.VideoAdSequenceStepSetting fields (read-only). See the Help Center article About video ad sequencing . Added new metadata fields to YouTubeChannelInsights and YouTubeVideoAttributeMetadata . Added the VIDEO_LINEUP criterion type and the video_lineup field to CampaignCriterion and AdGroupCriterion . This feature is available to allowlisted accounts only. Contact your Google business development representative for details. Added a Content Suitability report for both the detail and the group level. See the Help Center article About the 'Content suitability' report . v20.1 (2025-08-06) These EU political advertising changes have also been made in the v19.2 and v21 releases. EU political advertising changes Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. This change will be announced in advance. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. v20 (2025-06-04) The following new features and updates were added in v20. See Upgrade to the latest version for guidance. Assets Added several new metrics and segment columns for the asset_group report. Metrics columns new_customer_lifetime_value all_new_customer_lifetime_value conversions_by_conversion_date all_conversions_by_conversion_date conversions_value_by_conversion_date all_conversions_value_by_conversion_date value_per_conversions_by_conversion_date value_per_all_conversions_by_conversion_date Segment columns ad_network_type conversion_action conversion_action_name conversion_action_category external_conversion_source conversion_attribution_event_type conversion_adjustment conversion_lag_bucket conversion_or_adjustment_lag_bucket new_versus_returning_customers device slot Campaigns Added support for adding and updating campaign-level negative keywords for Performance Max campaigns. Conversions You can now update the google_ads_conversion_customer field on an existing customer to opt in to cross-account conversion tracking, or to change its existing conversion tracking parent to a different manager account. Note: This feature is behind a closed allowlist. To use it, contact your account manager. Added the ClickConversion.user_ip_address field. Google Ads does not support IP address matching for end users in the European Economic Area (EEA), United Kingdom (UK), or Switzerland (CH). Please add logic to conditionally exclude sharing IP addresses from users from these regions. Make sure that you provide users with clear and comprehensive information about the data you collect on your sites, apps, and other properties and get consent where required by law or any applicable Google policies. See the About offline conversion imports page for more details. Demand Gen Added new values to the ad_network_type segment that allow segmenting Demand Gen campaigns by channel: MAPS GMAIL DISCOVER Added metrics for platform-comparable conversions: platform_comparable_conversions_from_interactions_rate platform_comparable_conversions platform_comparable_conversions_value platform_comparable_conversions_value_per_cost platform_comparable_conversions_by_conversion_date platform_comparable_conversions_value_by_conversion_date platform_comparable_conversions_from_interactions_value_per_interaction cost_per_platform_comparable_conversion value_per_platform_comparable_conversion value_per_platform_comparable_conversions_by_conversion_date cost_converted_currency_per_platform_comparable_conversion Recommendations Added support for ShoppingSetting during campaign construction when using GenerateRecommendationsRequest . Added the merchant_center_account_id field to GenerateRecommendationsRequest to indicate when recommendations should be generated for retail, rather than the standard Performance Max campaigns. Planning Added AudienceInsightsDimension.YOUTUBE_LINEUP to replace AudienceInsightsDimension.YOUTUBE_DYNAMIC_LINEUP in AudienceInsightsService and ContentCreatorInsightsService . This new dimension lets you retrieve insights and metadata for YouTube Select (YTS) Lineups. Replaced objects associated with YOUTUBE_DYNAMIC_LINEUP such as DynamicLineupAttributeMetadata and the AudienceInsightsDynamicLineup to align with the broader removal of Dynamic Lineups across Google Ads. This feature is only available to accounts on an allowlist. Added AdditionalApplicationInfo and ApplicationInstance in the AudienceInsightsService , ContentCreatorInsightsService , and ReachPlanService . This feature is only available to accounts on an allowlist. Updated AudienceInsightsService and ContentCreatorInsightsService to provide more detailed insights. You can now segment content creator data by device using the new AudienceInsightsDimension.DEVICE and AudienceInsightsAttribute.device in both services. This feature is only available to accounts on an allowlist. Added additional aggregated video metrics to GenerateCreatorInsightsResponse for more comprehensive content creator analysis: engagement_rate , average_views_per_video , average_likes_per_video , average_shares_per_video , average_comments_per_video , shorts_views_count , shorts_video_count , and is_brand_connect_creator . This feature is only available to accounts on an allowlist. Added sub_country_locations to GenerateCreatorInsightsRequest for the ContentCreatorInsightsService . This allows specifying sub-country geographic locations to refine searches for creator insights. The sub_country_locations field is only supported when using the search_attributes oneof in the criteria field. If sub_country_locations are provided with other criteria types, the request will be invalid. This enables more granular geographical targeting and analysis for content creator insights. This feature is only available to accounts on an allowlist. Added ReachPlanService.ListPlannableUserLists , which returns first-party user lists owned by a customer, and added UserListInfo to the audience targeting options in GenerateReachForecastRequest . This lets you retrieve plannable user lists for a given customer and then generate reach forecasts for campaigns targeting those specific audiences. These enhancements improve tailored reach planning by incorporating your first-party audience data directly into forecasting. Reach forecasting is available to allowlisted accounts only. Videos Added AdFormatType.PAUSE ads served on organic YouTube videos on TV screens, which is included in reporting. These ads are displayed directly next to the static video frame on the pause screen. This does not include Demand Gen video ads displayed on the ad panel below or on top of a paused organic video, which are reported under AdFormatType.INFEED . v19.2 (2025-08-06) These EU political advertising changes have also been made in the v20.1 and v21 releases. EU political advertising changes Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. Wait for the announcement of this change. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. v19.1 (2025-04-16) The following features and changes were added in v19.1. Assets Added an asset_coverage field for AssetGroup that returns information about gaps in your asset group . Contains a subfield ad_strength_action_items which returns a list of actions that an advertiser can take to improve the ad strength of an asset group. Campaigns You can now rate or provide feedback for leads in Local Service Campaigns . As part of this change, v19.1 Added a new service named LocalServicesLeadService . You can use the ProvideLeadFeedback method to upload rating and feedback for leads. Added a new field named lead_feedback_submitted to LocalServicesLead to help determine if feedback was submitted to a lead. Added a new metric column biddable_cohort_app_post_install_conversions for App campaigns. Demand Gen Additional methods were introduced in the Planning services to support Demand Gen. Added support for AdGroup-level Channel Controls for Demand Gen campaigns . You can select a predefined general grouping of channels, or a subset of channels using the demand_gen_ad_group_settings field. The following channels are supported in the current release: YouTube In-Stream YouTube In-Feed YouTube Shorts Discover Gmail Display Exposed a new asset type for TALL_PORTRAIT_MARKETING_IMAGE . This asset type relates to the tall_portrait_marketing_images field of the Demand Gen Multi Asset Ad format . Change History Added support for three more resource types into ChangeStatusResourceType : CAMPAIGN_BUDGET ASSET_SET CAMPAIGN_ASSET_SET You can retrieve these three finer-grained types from the change_status report. Conversions You can now set the google_ads_conversion_customer field while creating a new customer using the Google Ads API. This was previously a read-only field. NOTE: This feature is behind a closed allowlist. To use it, contact your account manager. Note: This feature is behind a closed allowlist. To use it, contact your account manager. You can now specify the type of the customer associated with the conversion when uploading offline conversions. A new session_attributes field was introduced for ClickConversion . Local Services Ads Added a new RPC ProvideLeadFeedback to LocalServicesLeadService to provide feedback on the quality of LocalServicesLead . Added a new field lead_feedback_submitted to the LocalServicesLead resource that confirms if feedback was provided for a specific resource. Planning services Added support for Target frequency monthly forecasts in ReachPlanService.GenerateReachForecast . Developers can set TargetFrequencyTimeUnit.MONTHLY in TargetFrequencySettings when using the TARGET_FREQUENCY plannable product code to generate a Target frequency monthly reach forecast. Added a new method ReachPlanService.GenerateConversionRates , which allows advertisers to request suggested conversion rates for supported plannable products. Demand Gen forecasting in ReachPlanService.GenerateReachForecast : Developers can now request reach forecasts for Demand Gen campaigns. Developers can use the new DEMAND_GEN_MAX_CONVERSIONS plannable product code to generate Demand Gen reach forecasts. Added a new conversion_rate field that allows developers requesting Demand Gen reach forecasts to provide a conversion rate. Suggested conversion rates can be retrieved using the new ReachPlanService.GenerateConversionRates method. This field is required for Demand Gen forecasting requests. It is not supported for other plannable products. Added a new conversions field to returned forecasts. This field contains the number of conversions at a given point on the reach curve. Conversions are only supported for the DEMAND_GEN_MAX_CONVERSIONS plannable product. Recommendations The new ad_strength field is available for ImprovePerformanceMaxAdStrengthRecommendation , which returns the current ad strength score of the asset group associated with the recommendation. Shopping You can now override brand exclusions for Shopping ads in Performance Max campaigns. This is exposed through a new pmax_campaign_settings field at the campaign level, and it works only for PMax campaigns for Retail . A new CampaignError.BRAND_TARGETING_OVERRIDES_NOT_SUPPORTED error will be thrown if you attempt to set this field for an incompatible campaign type. Videos Added read-only support for Audio Ads. See Google Ads Help Center to learn about this feature. This change exposes: A new AdvertisingChannelSubType named YOUTUBE_AUDIO . A new AdGroupType named YOUTUBE_AUDIO . A new ad format enumeration named YOUTUBE_AUDIO_AD , and its corresponding YouTubeAudioAdInfo fields. Added new metrics and segments to query reach metrics with demo adjustment. As part of these changes, Two new metrics columns named coviewed_impressions and primary_impressions were introduced. Two new segments named adjusted_age_range and adjusted_gender were introduced. If either of the two new segments are selected alongside a reach metric field ( coviewed_impressions , primary_impressions , unique_users , or average_impression_frequency_per_user ), the other segment must be selected as well to retrieve valid stats for these columns. This feature is currently available only for allowlisted customers. v19 (2025-02-26) The following features and changes were added in v19. See Upgrade to the latest version for guidance. Account Management Added the following values to CustomerError to account for upcoming changes: CREATION_DENIED_FOR_POLICY_VIOLATION CREATION_DENIED_INELIGIBLE_MCC Ads Added DemandGenMultiAssetAdInfo.tall_portrait_marketing_images to support portrait image assets with aspect ratio 9:16 in Demand Gen ads. Assets (For allowlisted accounts only) Added support for message assets through Asset.business_message_asset , BusinessMessageAsset and the following enums and errors. Enums: AssetFieldType.BUSINESS_MESSAGE AssetType.BUSINESS_MESSAGE BusinessMessageCallToActionType BusinessMessageProvider Errors: AssetError.CUSTOMER_NOT_ON_ALLOWLIST_FOR_WHATSAPP_MESSAGE_ASSETS ResourceLimitType BUSINESS_MESSAGE_ASSET_LINKS_PER_CUSTOMER WHATSAPP_BUSINESS_MESSAGE_ASSET_LINKS_PER_CAMPAIGN WHATSAPP_BUSINESS_MESSAGE_ASSET_LINKS_PER_AD_GROUP Added AssetAutomationType.GENERATE_LANDING_PAGE_PREVIEW to support automatically generating a landing page preview. AssetAutomationType.GENERATE_SHORTER_YOUTUBE_VIDEOS is now opted-in by default for Demand Gen video responsive ads . (For allowlisted accounts only; allowlist is currently closed) Added Asset.app_deep_link_asset and AppDeepLinkAsset . Conversions Conversion goals LifecycleGoalValueSettings.high_lifetime_value is out of beta and now mutable. Added CustomerLifecycleGoal.owner_customer to show the resource name of the customer which owns the customer lifecycle goal. Deprecated ConversionActionType.SALESFORCE . Feeds Removed all feed-related entities, such as Feed , FeedMapping , FeedService , AdGroupFeed , feed_placeholder_view , etc. Users should now use assets to achieve the same purpose. Hotel & Travel Made min_days and max_days of ValueRuleItineraryAdvanceBookingWindow an optional field to allow specifying 0 as a value. This supports targeting for travel searches that happen today. Performance Max (For allowlisted accounts only) Brand guidelines Made Campaign.brand_guidelines_enabled mutable only when creating a Performance Max campaign. This is incompatible with Performance Max for travel goals . To enable brand guidelines for existing Performance Max campaigns, use a newly added CampaignService.EnablePMaxBrandGuidelines . Disabling brand guidelines is not supported. Added Campaign.brand_guidelines and BrandGuidelines to allow setting the brand's colors and font family. New error values: BatchJobError.CAMPAIGN_AND_CAMPAIGN_ASSET_TRANSACTION_FAILURE BrandGuidelinesMigrationError BRAND_GUIDELINES_ALREADY_ENABLED CANNOT_ENABLE_BRAND_GUIDELINES_FOR_REMOVED_CAMPAIGN BRAND_GUIDELINES_LOGO_LIMIT_EXCEEDED CANNOT_AUTO_POPULATE_BRAND_ASSETS_WHEN_BRAND_ASSETS_PROVIDED AUTO_POPULATE_BRAND_ASSETS_REQUIRED_WHEN_BRAND_ASSETS_OMITTED TOO_MANY_ENABLE_OPERATIONS CampaignError BRAND_GUIDELINES_NOT_ENABLED_FOR_CAMPAIGN BRAND_GUIDELINES_MAIN_AND_ACCENT_COLORS_REQUIRED BRAND_GUIDELINES_COLOR_INVALID_FORMAT BRAND_GUIDELINES_UNSUPPORTED_FONT_FAMILY BRAND_GUIDELINES_UNSUPPORTED_CHANNEL CANNOT_ENABLE_BRAND_GUIDELINES_FOR_TRAVEL_GOALS CUSTOMER_NOT_ALLOWLISTED_FOR_BRAND_GUIDELINES Added AssetAutomationType.GENERATE_ENHANCED_YOUTUBE_VIDEOS to support automatically generating enhanced video assets for Performance Max campaigns. Planning (For allowlisted accounts only) Added ContentCreatorInsightsService.GenerateTrendingInsights which allows users to see trending content topics on YouTube for given audience definitions. Added GenerateCreatorInsightsRequest.country_locations[] to specify countries to search for the given criteria Added GenerateCreatorInsightsRequest.search_brand to specify a brand to search for creators Added new fields to YouTubeChannelInsights to provide additional channel information for search_channels requests: channel_url channel_description top_videos Added new metadata fields to AudienceInsightsAttributeMetadata : youtube_video_metadata user_interest_attribute_metadata knowledge_graph_attribute_metadata Videos Following the release of DataLinkService.CreateDataLink , we added the following methods to allow for mutating previously created data links: RemoveDataLink for removing data links in a Google Ads account UpdateDataLink for accepting, rejecting and revoking data links in a Google Ads account Removed support for VIDEO_OUTSTREAM from the following enums: AdType AdvertisingChannelSubType AdGroupType Archived release notes See Sunsetted versions for archived release notes. Send feedback Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-12-03 UTC. Need to tell us more? [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-12-03 UTC."],[],[]] Blog Visit our blog for important announcements. Client Libraries Use our officially supported client libraries. YouTube Access our video contents. Discord Join the Google Ads Discord server. Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:13
https://developers.google.com/admob/api/reference/rest/v1/accounts/list
Method: accounts.list  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference Method: accounts.list Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag This page details how to list the AdMob publisher account most recently signed in to from the AdMob UI. The HTTP request uses a GET method to https://admob.googleapis.com/v1/accounts . You can use pageSize and pageToken as query parameters to control the number of accounts returned and for pagination. The response body contains a list of account objects and a nextPageToken for continuation. Authorization requires either the https://www.googleapis.com/auth/admob.readonly or https://www.googleapis.com/auth/admob.report OAuth scope. HTTP request Query parameters Request body Response body JSON representation Authorization scopes Examples Try it! Lists the AdMob publisher account that was most recently signed in to from the AdMob UI. For more information, see https://support.google.com/admob/answer/10243672 . HTTP request GET https://admob.googleapis.com/v1/accounts The URL uses gRPC Transcoding syntax. Query parameters Parameters pageSize integer Maximum number of accounts to return. pageToken string The value returned by the last ListPublisherAccountsResponse ; indicates that this is a continuation of a prior accounts.list call, and that the system should return the next page of data. Request body The request body must be empty. Response body Response for the publisher account list request. If successful, the response body contains data with the following structure: JSON representation { "account" : [ { object ( PublisherAccount ) } ] , "nextPageToken" : string } Fields account[] object ( PublisherAccount ) Publisher that the client credentials can access. nextPageToken string If not empty, indicates that there might be more accounts for the request; you must pass this value in a new ListPublisherAccountsRequest . Authorization scopes Requires one of the following OAuth scopes: https://www.googleapis.com/auth/admob.readonly https://www.googleapis.com/auth/admob.report For more information, see the OAuth 2.0 Overview . Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["This document details how to retrieve a list of AdMob publisher accounts. Use a `GET` request to `https://admob.googleapis.com/v1/accounts`. The request body should be empty. Optional `pageSize` and `pageToken` query parameters control the number of accounts returned and pagination. The response body includes an array of account objects and an optional `nextPageToken` for further data retrieval. Access requires specific OAuth scopes: `admob.readonly` or `admob.report`.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:14
https://developers.google.com/admob/api/reference/rest/v1beta/accounts.apps/create
Method: accounts.apps.create  |  AdMob API  |  Google for Developers Skip to main content AdMob API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in AdMob Guides Reference Libraries & Examples Support AdMob API AdMob Guides Reference Libraries & Examples Support Release notes AdMob API v1 REST Resources accounts Overview get list accounts.adUnits Overview list accounts.apps Overview list accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings ReportFooter ReportHeader ReportRow SortOrder StringList v1beta REST Resources accounts Overview get list accounts.adSources Overview list accounts.adSources.adapters Overview list accounts.adUnitMappings Overview batchCreate accounts.adUnits Overview create list accounts.adUnits.adUnitMappings Overview create list accounts.apps Overview create list accounts.campaignReport Overview generate accounts.mediationGroups Overview create list patch accounts.mediationGroups.mediationAbExperiments Overview create stop accounts.mediationReport Overview generate accounts.networkReport Overview generate Types DateRange LocalizationSettings MediationGroupLine ReportFooter ReportHeader ReportRow SortOrder StringList API dictionary Ad sources Adapters Home Products AdMob API Reference Method: accounts.apps.create Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag This method creates an app under a specified AdMob account. Access to this method is limited and requires reaching out to your account manager for access if you receive a 403 error. The HTTP request uses a POST method and includes a required parent parameter representing the account resource name. The request and response bodies contain instances of the App resource. The method requires the https://www.googleapis.com/auth/admob.monetization OAuth scope for authorization. HTTP request Path parameters Request body Response body Authorization scopes Examples Try it! Creates an app under the specified AdMob account. This method has limited access. If you see a 403 permission denied error, please reach out to your account manager for access. HTTP request POST https://admob.googleapis.com/v1beta/{parent=accounts/*}/apps The URL uses gRPC Transcoding syntax. Path parameters Parameters parent string Required. Resource name of the account for which the app is being created. Example: accounts/pub-9876543210987654 Request body The request body contains an instance of App . Response body If successful, the response body contains a newly created instance of App . Authorization scopes Requires the following OAuth scope: https://www.googleapis.com/auth/admob.monetization For more information, see the OAuth 2.0 Overview . Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-08-20 UTC. [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],["This outlines the process to create an app within an AdMob account using a POST request. The request utilizes a URL with gRPC Transcoding, targeting a specific account via the `parent` path parameter. The request body must include an `App` instance, and a successful response will return the newly created `App`. Authorization requires the `https://www.googleapis.com/auth/admob.monetization` OAuth scope. Access to this method is limited, possibly resulting in a 403 error.\n"]] Product info Usage limits Pricing Terms of Service Programs Google Developer Program Google Developer Groups Google Developer Experts Accelerators Google Cloud & NVIDIA Developer consoles Google API Console Google Cloud Platform Console Google Play Console Firebase Console Actions on Google Console Cast SDK Developer Console Chrome Web Store Dashboard Google Home Developer Console Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:14
https://www.linkedin.com/legal/user-agreement?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Ffeed%2Fhashtag%2Fndclondon&trk=registration-frontend_join-form-user-agreement#lithograph-app
User Agreement | LinkedIn Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Effective on November 3, 2025 Our mission is to connect the world’s professionals to allow them to be more productive and successful. Our services are designed to promote economic opportunity for our members by enabling you and millions of other professionals to meet, exchange ideas, learn, and find opportunities or employees, work, and make decisions in a network of trusted relationships. Table of Contents: Introduction Obligations Rights and Limits Disclaimer and Limit of Liability Termination Governing Law and Dispute Resolution General Terms LinkedIn “Dos and Don’ts” Complaints Regarding Content How To Contact Us Introduction 1.1 Contract When you use our Services you agree to all of these terms. Your use of our Services is also subject to our Cookie Policy and our Privacy Policy, which covers how we collect, use, share, and store your personal information. By creating a LinkedIn account or accessing or using our Services (described below), you are agreeing to enter into a legally binding contract with LinkedIn (even if you are using third party credentials or using our Services on behalf of a company). If you do not agree to this contract (“Contract” or “User Agreement”), do not create an account or access or otherwise use any of our Services. If you wish to terminate this Contract at any time, you can do so by closing your account and no longer accessing or using our Services. As a Visitor or Member of our Services, the collection, use, and sharing of your personal data is subject to our Privacy Policy , our Cookie Policy and other documents referenced in our Privacy Policy , and updates. You acknowledge and have read our Privacy Policy . Services This Contract applies to LinkedIn.com, LinkedIn-branded apps, and other LinkedIn-related sites, apps, communications, and other services that state that they are offered under this Contract (“Services”), including the offsite collection of data for those Services, such as via our ads and the “Apply with LinkedIn” and “Share with LinkedIn” plugins. LinkedIn and other Key Terms You are entering into this Contract with LinkedIn (also referred to as “we” and “us”). Designated Countries . We use the term “Designated Countries” to refer to countries in the European Union (EU), European Economic Area (EEA), and Switzerland. If you reside in the “Designated Countries”, you are entering into this Contract with LinkedIn Ireland Unlimited Company (“LinkedIn Ireland”) and LinkedIn Ireland will be the controller of your personal data provided to, or collected by or for, or processed in connection with our Services. If you reside outside of the “Designated Countries”, you are entering into this Contract with LinkedIn Corporation (“LinkedIn Corp.”) and LinkedIn Corp. will be the controller of (or business responsible for) your personal data provided to, or collected by or for, or processed in connection with our Services. Affiliates . Affiliates are companies controlling, controlled by or under common control with us, including, for example, LinkedIn Ireland, LinkedIn Corporation, LinkedIn Singapore and Microsoft Corporation or any of its subsidiaries (e.g., Github, Inc.). Social Action . Actions that members take on our services such as likes, comments, follows, sharing content. Content . Content includes, for example, feed posts, feedback, comments, profiles, articles (and contributions), group posts, job postings, messages (including InMails), videos, photos, audio, and/or PDFs. 1.2 Members and Visitors This Contract applies to Members and Visitors. When you register and join the LinkedIn Services, you become a “Member”. If you have chosen not to register for our Services, you may access certain features as a “Visitor.” 1.3 Changes We may make changes to this Contract. We may modify this Contract, our Privacy Policy and our Cookie Policy from time to time. If we materially change these terms or if we are legally required to provide notice, we will provide you notice through our Services, or by other means, to provide you the opportunity to review the changes before they become effective. However, we may not always provide prior notice of changes to these terms (1) when those changes are legally required to be implemented with immediate effect, or (2) when those changes relate to a newly launched service or feature. We agree that changes cannot be retroactive. If you object to any of these changes, you may close your account . Your continued use of our Services after we publish or send a notice about our changes to these terms means that you are consenting to the updated terms as of their effective date. 2. Obligations 2.1 Service Eligibility Here are some promises that you make to us in this Contract: You’re eligible to enter into this Contract and you are at least our “Minimum Age.” The Services are not for use by anyone under the age of 16. To use the Services, you agree that: (1) you must be the "Minimum Age" (described below) or older; (2) you will only have one LinkedIn account, which must be in your real name; and (3) you are not already restricted by LinkedIn from using the Services. Creating an account with false information is a violation of our terms, including accounts registered on behalf of others or persons under the age of 16. “Minimum Age” means 16 years old. However, if law requires that you must be older in order for LinkedIn to lawfully provide the Services to you without parental consent (including using your personal data) then the Minimum Age is such older age. Learn More 2.2 Your Account You will keep your password a secret You will not share your account with anyone else and will follow our policies and the law. Members are account holders. You agree to: (1) protect against wrongful access to your account (e.g., use a strong password and keep it confidential); (2) not share or transfer your account or any part of it (e.g., sell or transfer the personal data of others by transferring your connections); and (3) follow the law, our list of Dos and Don’ts (below), and our Professional Community Policies . Learn More You are responsible for anything that happens through your account unless you close it or report misuse. As between you and others (including your employer), your account belongs to you. However, if the Services were purchased by another party for you to use in connection with your work for them (e.g., Recruiter seat or LinkedIn Learning subscription bought by your employer), the party paying for such Service has the right to control access to and get reports on your use of such paid Service; however, they do not have rights to your personal account. 2.3 Payment You’ll honor your payment obligations and you are okay with us storing your payment information. You understand that there may be fees and taxes that are added to our prices. Refunds are subject to our policy, and we may modify our prices and those modified prices will apply prospectively. If you buy any of our paid Services, you agree to pay us the applicable fees and taxes and you agree to the additional terms specific to the paid Services. Failure to pay these fees will result in the termination of your paid Services. Also, you agree that: Your purchase may be subject to foreign exchange fees or differences in prices based on location (e.g., exchange rates). We may store and continue billing your payment method (e.g., credit card), even after it has expired, to avoid interruptions in your paid Services and to use it to pay for other Services you may buy. If your primary payment method fails, we may automatically charge a secondary payment method, if you have provided one. You may update or change your payment method. Learn more If you purchase a subscription, your payment method automatically will be charged at the start of each subscription period for the fees and taxes applicable to that period. To avoid future charges, cancel before the renewal date. Learn how to cancel or suspend your paid subscription Services. We may modify our prices effective prospectively upon reasonable notice to the extent allowed under the law. All of your paid Services are subject to LinkedIn’s refund policy . We may calculate taxes payable by you based on the billing information that you provide us. You can get a copy of your invoice through your LinkedIn account settings under “ Purchase History ”. 2.4 Notices and Messages You’re okay with us providing notices and messages to you through our websites, apps, and contact information. If your contact information is out of date, you may miss out on important notices. You agree that we will provide notices and messages to you in the following ways: (1) within the Services or (2) sent to the contact information you provided us (e.g., email, mobile number, physical address). You agree to keep your contact information up to date. Please review your settings to control and limit the types of messages you receive from us. 2.5 Sharing When you share information on our Services, others can see, copy and use that information. Our Services allow sharing of information (including content) in many ways, such as through your profile, posts, articles, group posts, links to news articles, job postings, messages, and InMails. Depending on the feature and choices you make, information that you share may be seen by other Members, Visitors, or others (on or off of the Services). Where we have made settings available, we will honor the choices you make about who can see content or other information (e.g., message content to your addressees, sharing content only to LinkedIn connections, restricting your profile visibility from search tools, or opting not to notify others of your LinkedIn profile update). For job searching activities, we default to not notifying your connections or the public. So, if you apply for a job through our Services or opt to signal that you are interested in a job, our default is to share it only with the job poster. To the extent that laws allow this, we are not obligated to publish any content or other information on our Services and can remove it with or without notice. 3. Rights and Limits 3.1. Your License to LinkedIn You own all of your original content that you provide to us, but you also grant us a non-exclusive license to it. We’ll honor the choices you make about who gets to see your content, including how it can be used for ads. As between you and LinkedIn, you own your original content that you submit or post to the Services.  You grant LinkedIn and our Affiliates the following non-exclusive license to the content and other information you provide (e.g., share, post, upload, and/or otherwise submit) to our Services: A worldwide, transferable and sublicensable right to use, copy, modify, distribute, publicly perform and display, host, and process your content and other information without any further consent, notice and/or compensation to you or others. These rights are limited in the following ways: You can end this license for specific content by deleting such content from the Services, or generally by closing your account, except (a) to the extent you (1) shared it with others as part of the Services and they copied, re-shared it or stored it, (2) we had already sublicensed others prior to your content removal or closing of your account, or (3) we are required by law to retain or share it with others, and (b) for the reasonable time it takes to remove the content you delete from backup and other systems. We will not include your content in advertisements for the products and services of third parties to others without your separate consent (including sponsored content). However, without compensation to you or others, ads may be served near your content and other information, and your social actions may be visible and included with ads, as noted in the Privacy Policy. If you use a Service feature, we may mention that with your name or photo to promote that feature within our Services, subject to your settings. We will honor the audience choices for shared content (e.g., “Connections only”). For example, if you choose to share your post to "Anyone on or off LinkedIn” (or similar): (a) we may make it available off LinkedIn; (b) we may enable others to publicly share onto third-party services (e.g., a Member embedding your post on a third party service); and/or (c) we may enable search tools to make that public content findable though their services. Learn More While we may edit and make format changes to your content (such as translating or transcribing it, modifying the size, layout or file type, and removing or adding labels or metadata), we will take steps to avoid materially modifying the meaning of your expression in content you share with others.  Because you own your original content and we only have non-exclusive rights to it, you may choose to make it available to others, including under the terms of a Creative Commons license . You and LinkedIn agree that if content includes personal data, it is subject to our Privacy Policy. You and LinkedIn agree that we may access, store, process, and use any information (including content and/or personal data) that you provide in accordance with the terms of the Privacy Policy and your choices (including settings). By submitting suggestions or other feedback regarding our Services to LinkedIn, you agree that LinkedIn can use and share (but does not have to) such feedback for any purpose without compensation to you. You promise to only provide content and other information that you have the right to share and that your LinkedIn profile will be truthful. You agree to only provide content and other information that does not violate the law or anyone’s rights (including intellectual property rights). You have choices about how much information to provide on your profile but also agree that the profile information you provide will be truthful. LinkedIn may be required by law to remove certain content and other information in certain countries. 3.2 Service Availability We may change or limit the availability of some features, or end any Service. We may change, suspend or discontinue any of our Services. We may also limit the availability of features, content and other information so that they are not available to all Visitors or Members (e.g., by country or by subscription access). We don’t promise to store or show (or keep showing) any information (including content) that you’ve shared. LinkedIn is not a storage service. You agree that we have no obligation to store, maintain or provide you a copy of any content or other information that you or others provide, except to the extent required by applicable law and as noted in our Privacy Policy. 3.3 Other Content, Sites and Apps Your use of others’ content and information posted on our Services, is at your own risk. Others may offer their own products and services through our Services, and we aren’t responsible for those third-party activities. Others’ Content: By using the Services, you may encounter content or other information that might be inaccurate, incomplete, delayed, misleading, illegal, offensive, or otherwise harmful. You agree that we are not responsible for content or other information made available through or within the Services by others, including Members. While we apply automated tools to review much of the content and other information presented in the Services, we cannot always prevent misuse of our Services, and you agree that we are not responsible for any such misuse. You also acknowledge the risk that others may share inaccurate or misleading information about you or your organization, and that you or your organization may be mistakenly associated with content about others, for example, when we let connections and followers know you or your organization were mentioned in the news. Members have choices about this feature . Others’ Products and Services: LinkedIn may help connect you to other Members (e.g., Members using Services Marketplace or our enterprise recruiting, jobs, sales, or marketing products) who offer you opportunities (on behalf of themselves, their organizations, or others) such as offers to become a candidate for employment or other work or offers to purchase products or services. You acknowledge that LinkedIn does not perform these offered services, employ those who perform these services, or provide these offered products.  You further acknowledge that LinkedIn does not supervise, direct, control, or monitor Members in the making of these offers, or in their providing you with work, delivering products or performing services, and you agree that (1) LinkedIn is not responsible for these offers, or performance or procurement of them, (2) LinkedIn does not endorse any particular Member’s offers, and (3) LinkedIn is not an agent or employment agency on behalf of any Member offering employment or other work, products or services. With respect to employment or other work, LinkedIn does not make employment or hiring decisions on behalf of Members offering opportunities and does not have such authority from Members or organizations using our products.  For Services Marketplace , (a) you must be at least 18 years of age to procure, offer, or perform services, and (b) you represent and warrant that you have all the required licenses and will provide services consistent with the relevant industry standards and our Professional Community Policies .  Others’ Events: Similarly, LinkedIn may help you register for and/or attend events organized by Members and connect with other Members who are attendees at such events. You agree that (1) LinkedIn is not responsible for the conduct of any of the Members or other attendees at such events, (2) LinkedIn does not endorse any particular event listed on our Services, (3) LinkedIn does not review and/or vet any of these events or speakers, and (4) you will adhere to the terms and conditions that apply to such events. 3.4 Limits We have the right to limit how you connect and interact on our Services. LinkedIn reserves the right to limit your use of the Services, including the number of your connections and your ability to contact other Members. LinkedIn reserves the right to restrict, suspend, or terminate your account if you breach this Contract or the law or are misusing the Services (e.g., violating any of the Dos and Don’ts or Professional Community Policies ). We can also remove any content or other information you shared if we believe it violates our Professional Community Policies or Dos and Don’ts or otherwise violates this Contract. Learn more about how we moderate content. 3.5 Intellectual Property Rights We’re providing you notice about our intellectual property rights. LinkedIn reserves all of its intellectual property rights in the Services. Trademarks and logos used in connection with the Services are the trademarks of their respective owners. LinkedIn, and “in” logos and other LinkedIn trademarks, service marks, graphics and logos used for our Services are trademarks or registered trademarks of LinkedIn. 3.6 Recommendations and Automated Processing We use data and other information about you to make and order relevant suggestions and to generate content for you and others. Recommendations: We use the data and other information that you provide and that we have about Members and content on the Services to make recommendations for connections, content, ads, and features that may be useful to you. We use that data and other information to recommend and to present information to you in an order that may be more relevant for you. For example, that data and information may be used to recommend jobs to you and you to recruiters and to organize content in your feed in order to optimize your experience and use of the Services. Keeping your profile accurate and up to date helps us to make these recommendations more accurate and relevant. Learn More   Generative AI Features: By using the Services, you may interact with features we offer that automate content generation for you. The content that is generated might be inaccurate, incomplete, delayed, misleading or not suitable for your purposes. Please review and edit such content before sharing with others. Like all content you share on our Services, you are responsible for ensuring it complies with our Professional Community Policies , including not sharing misleading information. The Services may include content automatically generated and shared using tools offered by LinkedIn or others off LinkedIn. Like all content and other information on our Services, regardless of whether it's labeled as created by “AI”, be sure to carefully review before relying on it. 4. Disclaimer and Limit of Liability 4.1 No Warranty This is our disclaimer of legal liability for the quality, safety, or reliability of our Services. LINKEDIN AND ITS AFFILIATES MAKE NO REPRESENTATION OR WARRANTY ABOUT THE SERVICES, INCLUDING ANY REPRESENTATION THAT THE SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, AND PROVIDE THE SERVICES (INCLUDING CONTENT, OUTPUT AND INFORMATION) ON AN “AS IS” AND “AS AVAILABLE” BASIS. TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, LINKEDIN AND ITS AFFILIATES DISCLAIM ANY IMPLIED OR STATUTORY WARRANTY, INCLUDING ANY IMPLIED WARRANTY OF TITLE, ACCURACY, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. If you plan to use content, output and information for any reason, it is your responsibility to verify its accuracy and fitness for your purposes, because any content, output and information on the service may not reflect accurate, complete, or current information. 4.2 Exclusion of Liability These are the limits of legal liability we may have to you. TO THE FULLEST EXTENT PERMITTED BY LAW (AND UNLESS LINKEDIN HAS ENTERED INTO A SEPARATE WRITTEN AGREEMENT THAT OVERRIDES THIS CONTRACT), LINKEDIN AND ITS AFFILIATES, WILL NOT BE LIABLE IN CONNECTION WITH THIS CONTRACT FOR LOST PROFITS OR LOST BUSINESS OPPORTUNITIES, REPUTATION (E.G., OFFENSIVE OR DEFAMATORY STATEMENTS), LOSS OF DATA (E.G., DOWN TIME OR LOSS, USE OF, OR CHANGES TO, YOUR INFORMATION OR CONTENT) OR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES. LINKEDIN AND ITS AFFILIATES WILL NOT BE LIABLE TO YOU IN CONNECTION WITH THIS CONTRACT FOR ANY AMOUNT THAT EXCEEDS (A) THE TOTAL FEES PAID OR PAYABLE BY YOU TO LINKEDIN FOR THE SERVICES DURING THE TERM OF THIS CONTRACT, IF ANY, OR (B) US $1000. 4.3 Basis of the Bargain; Exclusions The limitations of liability in this Section 4 are part of the basis of the bargain between you and LinkedIn and shall apply to all claims of liability (e.g., warranty, tort, negligence, contract and law) even if LinkedIn or its affiliates has been told of the possibility of any such damage, and even if these remedies fail their essential purpose. THESE LIMITATIONS OF LIABILITY DO NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY OR FOR FRAUD, GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, OR IN CASES OF NEGLIGENCE, WHERE A MATERIAL OBLIGATION HAS BEEN BREACHED. A MATERIAL OBLIGATION BEING AN OBLIGATION WHICH FORMS A PREREQUISITE TO OUR DELIVERY OF SERVICES AND ON WHICH YOU MAY REASONABLY RELY, BUT ONLY TO THE EXTENT THAT THE DAMAGES WERE DIRECTLY CAUSED BY THE BREACH AND WERE FORESEEABLE UPON CONCLUSION OF THIS CONTRACT AND TO THE EXTENT THAT THEY ARE TYPICAL IN THE CONTEXT OF THIS CONTRACT. 5. Termination We can each end this Contract, but some rights and obligations survive. Both you and LinkedIn may terminate this Contract at any time with notice to the other. On termination, you lose the right to access or use the Services. The following shall survive termination: Our rights to use and disclose your feedback; Section 3 (subject to 3.1.1); Sections 4, 6, 7, and 8.2 of this Contract; and Any amounts owed by either party prior to termination remain owed after termination. You can visit our Help Center to learn about how to close your account 6. Governing Law and Dispute Resolution In the unlikely event we end up in a legal dispute, depending on where you live, you and LinkedIn agree to resolve it in California courts using California law, Dublin, Ireland courts using Irish law, or as otherwise provided in this section. If you live in the Designated Countries, the laws of Ireland govern all claims related to LinkedIn's provision of the Services, but this shall not deprive you of the mandatory consumer protections under the law of the country to which we direct your Services where you have habitual residence. With respect to jurisdiction, you and LinkedIn agree to choose the courts of the country to which we direct your Services where you have habitual residence for all disputes arising out of or relating to this User Agreement, or in the alternative, you may choose the responsible court in Ireland. If you are a business user within the scope of Article 6(12) of the EU Digital Markets Act (“DMA”) and have a dispute arising out of or in connection with Article 6(12) of the DMA, you may also utilize the alternative dispute resolution mechanism available in the Help Center . For others outside of Designated Countries, including those who live outside of the United States: You and LinkedIn agree that the laws of the State of California, U.S.A., excluding its conflict of laws rules, shall exclusively govern any dispute relating to this Contract and/or the Services. You and LinkedIn both agree that all claims and disputes can be litigated only in the federal or state courts in Santa Clara County, California, USA, and you and LinkedIn each agree to personal jurisdiction in those courts. You may have additional rights of redress and appeal for some decisions made by LinkedIn that impact you. 7. General Terms Here are some important details about the Contract. If a court with authority over this Contract finds any part of it unenforceable, you and we agree that the court should modify the terms to make that part enforceable while still achieving its intent. If the court cannot do that, you and we agree to ask the court to remove that unenforceable part and still enforce the rest of this Contract. This Contract (including additional terms that may be provided by us when you engage with a feature of the Services) is the only agreement between us regarding the Services and supersedes all prior agreements for the Services. If we don't act to enforce a breach of this Contract, that does not mean that LinkedIn has waived its right to enforce this Contract. You may not assign or transfer this Contract (or your membership or use of Services) to anyone without our consent. However, you agree that LinkedIn may assign this Contract to its affiliates or a party that buys it without your consent. There are no third-party beneficiaries to this Contract. You agree that the only way to provide us legal notice is at the addresses provided in Section 10. 8. LinkedIn “Dos and Don’ts” LinkedIn is a community of professionals. This list of “Dos and Don’ts” along with our Professional Community Policies limits what you can and cannot do on our Services, unless otherwise explicitly permitted by LinkedIn in a separate writing (e.g., through a research agreement). 8.1. Dos You agree that you will: Comply with all applicable laws, including, without limitation, privacy laws, intellectual property laws, anti-spam laws, export control laws, laws governing the content shared, and other applicable laws and regulatory requirements; Provide accurate contact and identity information to us and keep it updated; Use your real name on your profile; and Use the Services in a professional manner. 8.2. Don’ts You agree that you will  not : Create a false identity on LinkedIn, misrepresent your identity, create a Member profile for anyone other than yourself (a real person), or use or attempt to use another’s account (such as sharing log-in credentials or copying cookies); Develop, support or use software, devices, scripts, robots or any other means or processes (such as crawlers, browser plugins and add-ons or any other technology) to scrape or copy the Services, including profiles and other data from the Services; Override any security feature or bypass or circumvent any access controls or use limits of the Services (such as search results, profiles, or videos); Copy, use, display or distribute any information (including content) obtained from the Services, whether directly or through third parties (such as search tools or data aggregators or brokers), without the consent of the content owner (such as LinkedIn for content it owns); Disclose information that you do not have the consent to disclose (such as confidential information of others (including your employer); Violate the intellectual property rights of others, including copyrights, patents, trademarks, trade secrets or other proprietary rights. For example, do not copy or distribute (except through the available sharing functionality) the posts or other content of others without their permission, which they may give by posting under a Creative Commons license; Violate the intellectual property or other rights of LinkedIn, including, without limitation, (i) copying or distributing our learning videos or other materials, (ii) copying or distributing our technology, unless it is released under open source licenses; or (iii) using the word “LinkedIn” or our logos in any business name, email, or URL except as provided in the Brand Guidelines ; Post (or otherwise share) anything that contains software viruses, worms, or any other harmful code; Reverse engineer, decompile, disassemble, decipher or otherwise attempt to derive the source code for the Services or any related technology that is not open source; Imply or state that you are affiliated with or endorsed by LinkedIn without our express consent (e.g., representing yourself as an accredited LinkedIn trainer); Rent, lease, loan, trade, sell/re-sell or otherwise monetize the Services or related data or access to the same, without LinkedIn’s consent; Deep-link to our Services for any purpose other than to promote your profile or a Group on our Services, without LinkedIn’s consent; Use bots or other unauthorized automated methods to access the Services, add or download contacts, send or redirect messages, create, comment on, like, share, or re-share posts, or otherwise drive inauthentic engagement; Engage in “framing”, “mirroring”, or otherwise simulating the appearance or function of the Services; Overlay or otherwise modify the Services or their appearance (such as by inserting elements into the Services or removing, covering, or obscuring an advertisement included on the Services); Interfere with the operation of, or place an unreasonable load on, the Services (e.g., spam, denial of service attack, viruses, manipulating algorithms); Violate the Professional Community Policies , certain third party terms where applicable, or any additional terms concerning a specific Service that are provided when you sign up for or start using such Service; Use our Services to do anything that is unlawful, misleading, discriminatory, fraudulent or deceitful (e.g. manipulated media that wrongfully depicts a person saying or doing something they did not say or do); and/or Misuse our reporting or appeals process, including by submitting duplicative, fraudulent or unfounded reports, complaints or appeals. 9. Complaints Regarding Content Contact information for complaints about content provided by our Members. We ask that you report content and other information that you believe violates your rights (including intellectual property rights), our Professional Community Policies or otherwise violates this Contract or the law. To the extent we can under law, we may remove or restrict access to content, features, services, or information, including if we believe that it’s reasonably necessary to avoid harm to LinkedIn or others, violates the law or is reasonably necessary to prevent misuse of our Services. We reserve the right to take action against serious violations of this Contract, including by implementing account restrictions for significant violations. We respect the intellectual property rights of others. We require that information shared by Members be accurate and not in violation of the intellectual property rights or other rights of third parties. We provide a policy and process for complaints concerning content shared, and/or trademarks used, by our Members. 10. How To Contact Us Our Contact information. Our Help Center also provides information about our Services. For general inquiries, you may contact us  online . For legal notices or service of process, you may write us at these  addresses . LinkedIn © 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://www.linkedin.com/checkpoint/rp/request-password-reset?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fposts%2Fndc-conferences_check-out-nick-chapsas-workshop-building-activity-7416435226064744449-suZ8&trk=public_post_nav-header-signin
Reset Password | LinkedIn Sign in Join now Forgot password We’ll send a verification code to this email or phone number if it matches an existing LinkedIn account. Email or Phone We don’t recognize that email. Did you mean {:emailSuggestion} ? We’ll send a verification code to this email or phone number if it matches an existing LinkedIn account. Next or Back LinkedIn © 2026 User Agreement Privacy Policy Community Guidelines Cookie Policy Copyright Policy Send Feedback Language العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional))
2026-01-13T09:30:14
https://developers.google.com/google-ads/api/docs/release-notes
Release notes  |  Google Ads API  |  Google for Developers Skip to main content Google Ads API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in Guides Reference Libraries and samples Policies Support Google Ads API Guides Reference Libraries and samples Policies Support Google Ads API overview Release notes Video guides Overview Authentication & authorization Introduction Web flow with the OAuth playground Best practices Performance Max Introduction Assets Campaign and budget Retail Asset groups Listing group filters Asset group assets Campaign conversion goals Enhanced conversions for web Introduction Usage flow Code example Enhanced Conversions for Leads Introduction Usage Flow GAQL Introduction Query structure & grammar segmentation GoogleAdsRow Field Metadata Fields and Clauses Field compatibility REST API Introduction Authorization with rest SearchStream & search Best practices Retrieving information efficiently Mutating information efficiently Advanced information retrieval Account change history The Basics Change Status Optimization Score & Recommendations Overview Optimization score Recommendations Overview Take actions Apply parameters Take actions in bulk Error handling & testing Best practices Smart Bidding Overview & getting started MaximizeConversions & MaximizeConversionValue Logging & Monitoring Introduction Logging & Monitoring in the Cloud Sending client logs to Google Cloud Integration Testing Introduction Testing in practice Testing Best Practices Authentication & Authorization Introduction Web Flow with the OAuth Playground Best Practices GAQL Introduction Query Structure & Grammar segmentation GoogleAdsRow Field metadata Fields and clauses Field Compatibility SELECT Requirement Date Range Validation Filtering Conditions Validating Queries REST API Introduction Authorization with REST SearchStream & Search Best Practices Retrieving Information Efficiently Mutating Information Efficiently Advanced Information Retrieval Account change history The Basics Change Status Optimization score & recommendations Overview Deep Dive: Optimization Score Deep Dive: Recommendations Recommendations: Take Actions Recommendations: Apply Parameters Recommendations: Take Actions In Bulk Error Handling & Testing Best Practices Smart Bidding Overview & Getting Started MaximizeConversions & MaximizeConversionValue Logging & Monitoring Introduction Logging & Monitoring in the Cloud Sending Client Logs to Google Cloud Get started Introduction Quickstart Handle errors Common errors Next steps Authentication and authorization Overview Access model overview Service account workflow User authentication workflow Overview Single-user authentication workflow Multi-user authentication workflow Handling two-step verification OAuth 2.0 internals Set up a Google API Console project for authorization Credential management Basic concepts Overview API structure Versioning Changing objects Retrieving objects Resource metadata Call structure Mutates Overview Resource mutates Bulk mutates Best practices Cloud-managed access levels Google Ads management Manage accounts Overview Create an account Link to manager accounts List accessible accounts Get account hierarchy Manage user access Manage user access invitations Link product accounts Link YouTube Change status Change event Advertiser identity verification Manage assets Overview Creation and usage Location assets Automated assets Asset automation settings Business message assets Reporting Create assets with generative AI (closed beta) Asset generation (closed beta) Asset generation errors (closed beta) Asset generation code examples (closed beta) Manage billing Billing overview Billing setup Account budget Invoice Create and manage campaigns Explore campaign types Overview Create campaigns Create ad groups Ad management Overview Ad types Upgraded URLs Overview Fields Supported entities Valuetrack parameters for Upgraded URLs Reports Serving URL expansion rules Dynamic Search Ads Overview Create DSAs DSA page feeds Reporting Hotel Ads Overview Create campaign Create ad group Create ad Create listing groups Bidding Overview Assign strategy Set bids Adjust bids Reporting Travel Feeds for Search Ads Things to do ads Overview Create campaign Create ad group Create ad Create listing groups Reporting Responsive display ads Overview Create ads Retrieve ads Responsive search ads Overview Create ads Mutate ads Ad customization Retrieve ads Shopping Ads Overview Link Merchant Center Create campaign Create ad group Create ad Create listing groups Reporting Uploaded display ads Overview Create uploaded display ads Uploaded HTML5 ads Budgets Overview Create budget Share budget Assign budget Remove budget Track performance Restrictions & errors Bidding Overview Strategy types Strategy status Portfolio and standard bidding strategies Cross-account bidding strategies Ad group level target overrides Set bids manually Manage bid modifiers Create seasonality adjustments Create data exclusions Campaign Drafts Targeting Overview Criteria Shared sets Bid modifiers Location targeting Targeting settings Performance Max campaigns Overview Get started Business goals Online sales or lead generation Online sales with a product feed Travel goals Concepts Campaign setup Create a budget Create a campaign Conversion goals Create campaign criteria ValueTrack parameters Asset group setup Assets Asset requirements Asset groups Asset group signals Listing groups Reporting Overview Campaign Reporting Asset Group Reporting Asset Reporting Retail Campaign Reporting Campaign Criterion Reporting Upgrade to Performance Max Overview Check upgrade eligibility Create a campaign based on an existing campaign Enhance a campaign Compare performance with an existing campaign Complete the upgrade Best practices Structure requests Batch processing Optimizations Troubleshooting Common errors when working with Performance Max Resources and examples Code examples Add performance max campaign Add performance max retail campaign Add performance max product listing group tree Add performance max for travel goals campaign App campaigns Overview Create campaign Create ad group & ad Code example Reporting Demand Gen campaigns Overview Create campaign Audience targeting Campaigns with product feeds Channel controls Reporting & optimization Local Services campaigns Smart campaigns Overview Get suggestions Create budget Create campaign and campaign setting Create campaign criteria Create ad group and ad group ad Send mutate request Reporting Search campaigns Getting started AI Max for Search campaigns Getting started Video campaigns Manage conversions Overview Conversion action categories Getting started Manage offline conversions Manage online conversions Manage call conversions Manage store sales conversions Modify uploaded conversions Upload conversion adjustments Conversion value rules Custom conversion variables Conversion goals Overview Customer goals Campaign goals Lifecycle goals Monitor Upload Health Reporting Troubleshooting Manage audiences Overview Audiences Get started with audience segments Visitors to your website Visitors to specific pages Visitors who took specific actions Multiple user lists Customer match Get started Manage Troubleshoot Custom audiences Lookalike segments Sample scenario Overview Creating the rule item groups Creating the user list Dynamic Remarketing Overview Prerequisites Asset-based Dynamic Remarketing Merchant center-based Dynamic Remarketing Batch processing Overview Usage flow Using temporary IDs Listing group filters Best practices & limitations Optimize your ads Optimization & recommendations Keyword planning Overview Generate keyword ideas Generate ad group themes Generate historical metrics Generate forecast metrics Experiments Overview Create experiments Create experiment arms Experiment operations Reporting on experiments Async errors Reach forecasting Overview Concepts Authenticate Specify a media plan Generate a curve Bid simulations Overview Prerequisites Retrieve bid simulations Report and monitor performance Reporting Overview Use case Criteria metrics Segmentation Zero metrics Labels Streaming Paging Reports in the UI Mapping valuetrack parameters with report fields Query language Overview Query grammar Query structure Date ranges Case sensitivity Ordering and limiting results Interactive query builder Query Validator Query Cookbook Audience and creator insights Overview Audience insights YouTube creator insights Develop applications Test and troubleshoot your application Best practices Overview API limits and quotas System limits Troubleshooting Testing Test accounts Developer token reset Error debugging Error types Understand API errors Common errors Partial failures Warnings Policy exemption request Overview Ads Keywords Productionize your application Overview Secure credentials Access levels Logging Monitoring Manage data efficiently Rate limits Shared aliases Stay updated Home Products Google Ads API Send feedback Release notes Stay organized with collections Save and categorize content based on your preferences. Page Summary outlined_flag Google Ads API v22 introduces the AssetGenerationService for generating text and image assets using generative AI. New bidding goals without a target CPA or ROAS are added for App campaigns to optimize for installs or total value. Demand Gen campaigns now support the TargetCPC bidding strategy and asset automation for generating design variations and videos from existing assets. Performance Max campaigns gain new AssetAutomationType values for image enhancement and extraction, along with new segments for reporting. Planning services include updates for user lists, partner audiences, YouTube metrics, trend insights, and support for parental status and income ranges in AudienceInsightsService. v22 (2025-10-15) The following new features and updates were added in v22. See Upgrade to the latest version for guidance. Assets Added LANDING_PAGE_PREVIEW as a new image asset field type. Introduced the AssetGenerationService (Beta): This service allows generating text and image assets using generative AI. This service is initially available only to a limited set of closed beta participants. GenerateText : Generates text based on inputs like final URL, freeform prompts, keywords, and existing campaign context. GenerateImages : Generates images based on inputs like final URL, freeform prompts, existing campaign context, or by recontextualizing existing product images. Errors during asset generation are returned with codes from AssetGenerationErrorEnum . Campaigns Added new bidding goals for App campaigns for installs (ACi) to optimize without specifying a target, useful for rapid scaling or when determining the right target is challenging. In AppCampaignBiddingStrategyGoalType : OPTIMIZE_IN_APP_CONVERSIONS_WITHOUT_TARGET_CPA : Use with standard Maximize Conversions . OPTIMIZE_TOTAL_VALUE_WITHOUT_TARGET_ROAS : Use with standard Maximize Conversion Value . Added support for the fixed share of voice bidding strategy type . Added Campaign.feed_types , showing the types of feeds attached to a campaign. For Performance Max campaigns, this can indicate the business vertical, such as MERCHANT_CENTER_FEED for retail. Allowed attaching NEGATIVE_KEYWORDS shared sets to MULTI_CHANNEL (for App campaigns) and LOCAL campaigns. Demand Gen Added the TargetCPC bidding strategy for Demand Gen campaigns. This strategy sets bids to maximize clicks at the configured target cost-per-click (CPC). Set the campaign-level target CPC using Campaign.target_cpc . Override at the ad group level using AdGroup.target_cpc_micros . Added a new AssetAutomationType : GENERATE_DESIGN_VERSIONS_FOR_IMAGES : Available for DemandGenMultiAssetAds . If enabled, this adds design elements and embeds text assets into image assets to create new image assets with different aspect ratios. New DemandGenMultiAssetAds are opted in by default. Added a new AssetAutomationType : GENERATE_VIDEOS_FROM_OTHER_ASSETS : Available for DemandGenMultiAssetAds . If enabled, it generates videos using other assets like images and text. These videos can then be used to create new DemandGenVideoResponsiveAds . New DemandGenMultiAssetAds are opted in by default. Renamed the field BudgetPerDayMinimumErrorDetails.minimum_bugdet_amount_micros to minimum_budget_amount_micros . General Added a limit of 10,000 operations per AddBatchJobOperations request. Updated handling for the page_size field in ListBatchJobResultsRequest : If page_size is not set or is 0, it now defaults to the maximum of 1,000 (previously returned INVALID_PAGE_SIZE ). If page_size exceeds 1,000, the API now returns an INVALID_PAGE_SIZE error (previously silently capped at 1,000). Added a new error code: QuotaError.PAYMENTS_PROFILE_ACTIVATION_RATE_LIMIT_EXCEEDED to indicate when the payment profile activation rates limit has been exceeded. Performance Max Added new AssetAutomationType values for Performance Max campaigns: GENERATE_IMAGE_ENHANCEMENT : Enables automatic creation of enhanced images such as auto-cropping. Enabled by default. GENERATE_IMAGE_EXTRACTION : Enables automatically sourcing images from final URLs. Defaults to the account-level Dynamic Image Extension setting. Removed AssetPerformanceLabel for Performance Max campaigns. The functionality of the removed Campaign.url_expansion_opt_out is now managed by setting the AssetAutomationType FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION in AssetAutomationSetting . Added new segments for Performance Max campaigns. Each of these segments is only available for Performance Max campaigns and won't return data when any other campaign type is selected. ad_using_product_data : Indicates if an ad uses product data from a Google Merchant Center feed. ad_using_video : Indicates if an ad uses a video asset. Planning In UserListCrmDataSourceType , added the value THIRD_PARTY_PARTNER_DATA . Added new error codes related to partner audiences: PARTNER_AUDIENCE_SOURCE_NOT_SUPPORTED_FOR_USER_LIST_TYPE PARTNER_AUDIENCE_TYPE_NOT_SUPPORTED_FOR_USER_LIST_TYPE COMMERCE_PARTNER_NOT_ALLOWED PARTNER_AUDIENCE_INFO_NOT_SUPPORTED_FOR_USER_LIST_TYPE PARTNER_MANAGER_ACCOUNT_DISALLOWED PARTNER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA ADVERTISER_TOS_NOT_ACCEPTED ADVERTISER_PARTNER_LINK_MISSING ADVERTISER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA ACCOUNT_SETTING_TYPE_NOT_ALLOWED_FOR_USER_LIST_TYPE INVALID_CAMPAIGN_TYPE_FOR_THIRD_PARTY_PARTNER_DATA_LIST Added is_active_live_stream_creator to YouTubeMetrics . This is returned by ContentCreatorInsightsService.GenerateCreatorInsights and indicates if a creator published a livestream in the past 90 days. Added a new PlannableUserListMetadata message that contains UserListCrmDataSourceType in PlannableUserList . This message is returned by 'ReachPlanService.ListPlannableUserLists' to show if a CRM user list data source is either FIRST_PARTY or THIRD_PARTY_PARTNER_DATA . In ReachPlanService , added the field trueview_views , which replaces the views field. In TrendInsight , added support for related_videos and related_creators . Also added video properties metadata and publish dates in YouTubeVideoAttributeMetadata.video_properties and YouTubeVideoAttributeMetadata.publish_date . AudienceInsightsService.GenerateInsightsFinderReport now supports parental_status and income_ranges , and more complex AND/OR combinations of topics and audiences. Reports Added two new click types: CLICK_TO_MESSAGE_THIRD_PARTY_CLICK and CLICK_TO_MESSAGE_LANDING_PAGE_CLICK . AssetGroupAsset is now segmentable by device , conversion_action , conversion_action_name , and conversion_action_category . AdGroupAdAssetView and AdGroupAdAssetCombinationView now fully support performance and conversion metrics for RESPONSIVE_SEARCH_AD . Previously, only impressions were returned for this ad type in these views. To facilitate Smart Bidding Exploration, the following metrics are now segmentable by date fields ( date , month , quarter , week , year ): clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Added a new resource: TargetingExpansionView , which reports metrics for expansions over manual targeting, such as keywordless expansion for AI Max for Search Campaigns. Added new segments for PMax campaigns. See Performance Max updates . Shopping Fixed the campaign and ad group scoping of metrics in the ShoppingProduct resource. Unified Goals Added support for customer retention goals to optimize for re-engaging existing customers. Configure targeting using CampaignRetentionGoalSettings.target_option : TARGET_SPECIFIC : Only uses users from user lists associated with the campaign. (Currently allowlist only). TARGET_ALL (Default): Targets all users for re-engagement. Video Renamed several video-views related metrics: average_cpv is now trueview_average_cpv video_view_rate is now video_trueview_view_rate video_views is now video_trueview_views video_view_rate_in_feed is now video_trueview_view_rate_in_feed video_view_rate_in_stream is now video_trueview_view_rate_in_stream video_view_rate_shorts is now video_trueview_view_rate_shorts Added metrics for video ad watch time: video_watch_time_duration_millis : Total watch time. average_video_watch_time_duration_millis : Average watch time per impression. v21 (2025-08-06) See Upgrade to the latest version for guidance. AI Max for Search campaigns You can now use the ai_max_setting.enable_ai_max field of the Campaign to enable AI Max for Search campaigns. AI Max for Search campaigns expands a Search campaign's reach through search term matching and allows controlling whether targeting and creative controls serve when set. Text asset automation and brand list controls that were set in previous version requests will still be respected until AI Max for Search campaigns is explicitly toggled and turned off. Campaign.ai_max_setting.bundling_required can be used to determine if AI Max for Search campaigns must be enabled to respect or modify text asset automation and brand list controls. AdGroup.ai_max_ad_group_setting.disable_search_term_matching can be used to disable search term matching when a parent campaign has enabled AI Max for Search campaigns. See our blog post Unlock next-level performance with AI Max for Search campaigns . Added CampaignError.AI_MAX_MUST_BE_ENABLED , which is thrown for Search campaigns when you opt in to FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION without enabling AI Max for Search campaigns on the campaign. Added support for applying targeting controls at the ad group level in AI Max for Search campaigns. You can now add the following criteria to ad groups: Brand lists Locations Webpages (URL rules) Added the ai_max_search_term_ad_combination_view to report on performance for combinations of search terms, headlines, and landing pages. This view shows which search queries triggered your ads and how those specific combinations performed. A future release will include an additional view that also includes Performance Max data. If you want to avoid migrating your implementation to get Performance Max data, consider waiting for that release. Added AI_MAX as a new value for the search_term_match_type segment. Assets Added the fields terms_and_conditions_text , terms_and_conditions_uri , promotion_barcode_info , and promotion_qr_code_info in PromotionAsset . Barcode and QR code fields are located within the promotion_trigger oneof. See the Help Center article About promotion assets . Added FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION to AssetAutomationTypeEnum . With this setting, you can control the automatic generation of text assets and landing pages from the final URL in Search campaigns. Added a new service AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset to remove automatically created assets from Campaign . This service supports removal of the final URL expansion asset only. Added DESCRIPTION_PREFIX to the ServedAssetFieldType enum. This corrects an issue where the served_asset_field_type in ad_group_ad_asset_combination_view was UNKNOWN for assets serving as a description prefix. Campaigns Added a new enum value MISSING_LOCATION_TARGETING to CampaignPrimaryStatusReason . This new status reason will be returned only for location-restricted campaigns which don't specify location targeting. For location-restricted campaigns, any attempt to add location targeting outside the allowed area will result in the criterion error LOCATION_TARGETING_NOT_ELIGIBLE_FOR_RESTRICTED_CAMPAIGN . Added support for third-party integration partners on the VideoCustomer.third_party_integration_partners and Campaign.third_party_integration_partners levels. See the Help Center article Track app conversions with third-party app analytics . You can now set the advertising_partner_ids field for an existing Campaign . Previously, this field could only be set for a new campaign during its creation. The field is still immutable after being set. By using a shared list of type TYPE_PLACEMENT_LIST defined at the manager account level, advertisers can now use CustomerNegativeCriterion criteria to exclude a list of placements in individual advertiser customer accounts. Added DESCRIPTION_PREFIX to the ServedAssetFieldType enum. This corrects an issue where the served_asset_field_type in the ad_group_ad_asset_combination_view was UNKNOWN for assets serving as a description prefix. Added support for the field target_roas_tolerance_percent_millis in the MaximizeConversionValue and TargetRoas bidding strategies. TargetRoas.target_roas_tolerance_percent_millis is only available for portfolio strategies, which is only available for Search campaigns. Changed a ProductGroup error code. For requests with a partial failure enabled, LISTING_GROUP_ERROR_IN_ANOTHER_OPERATION will be returned instead of INVALID_LISTING_GROUP_HIERARCHY . Added a new resource LocationInterestView that summarizes the performance of adgroup location interest criteria. Conversions Added ENGAGED_VIEW as a new value for the conversion_attribution_event_type segment. Customers will no longer have access to debug_enabled mode in ConversionUploadService . This field, if set to TRUE , was earlier used to distinguish the CLICK_NOT_FOUND error from SUCCESS for enhanced conversions for leads imports. Demand Gen Added an error code CampaignBudgetError.BUDGET_BELOW_DAILY_MINIMUM . In the future, this error will be returned when attempting to set a very low budget amount for a Demand Gen campaign. Details about the required minimum budget can be found in the new error details field budgetDailyMinimumErrorDetails . EU political advertising changes These EU political advertising changes have also been made in the v19.2 and v20.1 releases. Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. API calls to create a new campaign will fail with a FieldError.REQUIRED error if this field is not set. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. This change will be announced in advance. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. Performance Max For new PMax campaigns the default value of Campaign.brand_guidelines_enabled is now true . Added the campaign_search_term_view report. This view offers search terms metrics aggregated at the campaign level. This view also introduces Performance Max campaign support for search terms. Added PERFORMANCE_MAX as a new value for the search_term_match_type segment. Planning Added a new method ReachPlanService.ListPlannableUserInterests , which allows advertisers to discover the user interests (affinities and in-markets) supported by ReachPlanService.GenerateReachForecast . The method supports searching for specific user interest types and querying for names and paths. Added AdditionalApplicationInfo to ReachPlanService.ListPlannableUserLists as an optional input field. Added support to AudienceInsightsService.ListAudienceInsightsAttributes to fetch available 1P user lists for the customer ID making the request. Added 1P user lists support to AudienceInsightsService.GenerateAudienceCompositionInsights to fetch insights for audiences targeting a user list. Any request that targets a user list will only return the audience index and is only available for the following AudienceInsightsDimension : AGE_RANGE , GENDER , AFFINITY_USER_INTEREST , IN_MARKET_USER_INTEREST . Updated the audience input type to InsightsAudience for AudienceInsightsService.GenerateTargetingSuggestionMetrics . The new audience input allows an AND-of-ORs combination of user interests, supporting potential reach metrics for more customized audience definitions. Added audience share to TrendInsightMetrics to get the share of an audience for a trend. Added new related categories to KnowledgeGraphAttributeMetadata so users can filter Knowledge Graph Attributes by category. Reports A variety of new metrics are now available for AssetGroupAsset , ChannelAggregateAssetView , and CampaignAggregateAssetView . Additionally, for ChannelAggregateAssetView and CampaignAggregateAssetView , impressions , which was previously zeroed out for Performance Max campaigns, will now report its true value. Made the AssetSet resource selectable with ChangeStatus so users can make get more info about the AssetSet or CampaignAssetSet type resource in one query. Made the CampaignAssetSet resource selectable with ChangeStatus so users can make get more info about the AssetSet or CampaignAssetSet type resource in one query. Added a new segment search_term_targeting_status that can be selected in campaign search term view. Added a new final_url_expansion_asset_view . Added support for metrics value_adjustment and all_value_adjustment in the AssetGroup report. Made AssetGroupAsset segmentable by ad_network_type . Added a new segment landing_page_source that can be used with the landing_page_view resource. Added a new segment search_term_match_source that can be selected in the search term and campaign search term views. Added a new segment match_type that can be selected from the keyword view. Added support for metrics for unique query intent clusters with: clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Added a new click type VEHICLE_ASSETS in the click_view segmentation to track and report clicks related to the ad formats specific to vehicle assets. Smart Bidding Exploration for Target ROAS bidding strategies on Search You can now enable Smart Bidding Exploration on Search campaigns by setting the field target_roas_tolerance_percent_millis in the MaximizeConversionValue and TargetRoas bidding strategies to any value divisible by 1000 between 10000 (10%) and 30000 (30%) inclusive. MaximizeConversionValue bidding strategies will also need the target_roas field set. TargetRoas.target_roas_tolerance_percent_millis is only available for portfolio strategies. See our blog post on Smart Bidding Exploration and help center article . Aggregated diversity reporting is now supported for the following metrics for unique query intent clusters. A time segmented view is available in the Google Ads UI. clicks_unique_query_clusters conversions_unique_query_clusters impressions_unique_query_clusters Video Added YouTubeVideoListAsset . Also added Asset#youtube_video_list_asset , which can be used to create link between a campaign and a YouTubeVideoListAsset type. See the Help Center article Use related videos . Added new metadata fields to YouTubeChannelInsights and YouTubeVideoAttributeMetadata . Exposed new click types: VIDEO_RELATED_VIDEOS_CLICK , VIDEO_CHANNEL_CLICK , and PRODUCT_ASSETS . Added the allow_non_skippable_in_stream field to VideoAdInventoryControl to let Video Responsive ads serve as non-skippable in-stream ads. This option is available for campaigns that support mixing the non-skippable format with other formats. Added the Campaign.VideoCampaignSettings.video_ad_sequence and AdGroup.VideoAdGroupSettings.VideoAdSequenceStepSetting fields (read-only). See the Help Center article About video ad sequencing . Added new metadata fields to YouTubeChannelInsights and YouTubeVideoAttributeMetadata . Added the VIDEO_LINEUP criterion type and the video_lineup field to CampaignCriterion and AdGroupCriterion . This feature is available to allowlisted accounts only. Contact your Google business development representative for details. Added a Content Suitability report for both the detail and the group level. See the Help Center article About the 'Content suitability' report . v20.1 (2025-08-06) These EU political advertising changes have also been made in the v19.2 and v21 releases. EU political advertising changes Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. This change will be announced in advance. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. v20 (2025-06-04) The following new features and updates were added in v20. See Upgrade to the latest version for guidance. Assets Added several new metrics and segment columns for the asset_group report. Metrics columns new_customer_lifetime_value all_new_customer_lifetime_value conversions_by_conversion_date all_conversions_by_conversion_date conversions_value_by_conversion_date all_conversions_value_by_conversion_date value_per_conversions_by_conversion_date value_per_all_conversions_by_conversion_date Segment columns ad_network_type conversion_action conversion_action_name conversion_action_category external_conversion_source conversion_attribution_event_type conversion_adjustment conversion_lag_bucket conversion_or_adjustment_lag_bucket new_versus_returning_customers device slot Campaigns Added support for adding and updating campaign-level negative keywords for Performance Max campaigns. Conversions You can now update the google_ads_conversion_customer field on an existing customer to opt in to cross-account conversion tracking, or to change its existing conversion tracking parent to a different manager account. Note: This feature is behind a closed allowlist. To use it, contact your account manager. Added the ClickConversion.user_ip_address field. Google Ads does not support IP address matching for end users in the European Economic Area (EEA), United Kingdom (UK), or Switzerland (CH). Please add logic to conditionally exclude sharing IP addresses from users from these regions. Make sure that you provide users with clear and comprehensive information about the data you collect on your sites, apps, and other properties and get consent where required by law or any applicable Google policies. See the About offline conversion imports page for more details. Demand Gen Added new values to the ad_network_type segment that allow segmenting Demand Gen campaigns by channel: MAPS GMAIL DISCOVER Added metrics for platform-comparable conversions: platform_comparable_conversions_from_interactions_rate platform_comparable_conversions platform_comparable_conversions_value platform_comparable_conversions_value_per_cost platform_comparable_conversions_by_conversion_date platform_comparable_conversions_value_by_conversion_date platform_comparable_conversions_from_interactions_value_per_interaction cost_per_platform_comparable_conversion value_per_platform_comparable_conversion value_per_platform_comparable_conversions_by_conversion_date cost_converted_currency_per_platform_comparable_conversion Recommendations Added support for ShoppingSetting during campaign construction when using GenerateRecommendationsRequest . Added the merchant_center_account_id field to GenerateRecommendationsRequest to indicate when recommendations should be generated for retail, rather than the standard Performance Max campaigns. Planning Added AudienceInsightsDimension.YOUTUBE_LINEUP to replace AudienceInsightsDimension.YOUTUBE_DYNAMIC_LINEUP in AudienceInsightsService and ContentCreatorInsightsService . This new dimension lets you retrieve insights and metadata for YouTube Select (YTS) Lineups. Replaced objects associated with YOUTUBE_DYNAMIC_LINEUP such as DynamicLineupAttributeMetadata and the AudienceInsightsDynamicLineup to align with the broader removal of Dynamic Lineups across Google Ads. This feature is only available to accounts on an allowlist. Added AdditionalApplicationInfo and ApplicationInstance in the AudienceInsightsService , ContentCreatorInsightsService , and ReachPlanService . This feature is only available to accounts on an allowlist. Updated AudienceInsightsService and ContentCreatorInsightsService to provide more detailed insights. You can now segment content creator data by device using the new AudienceInsightsDimension.DEVICE and AudienceInsightsAttribute.device in both services. This feature is only available to accounts on an allowlist. Added additional aggregated video metrics to GenerateCreatorInsightsResponse for more comprehensive content creator analysis: engagement_rate , average_views_per_video , average_likes_per_video , average_shares_per_video , average_comments_per_video , shorts_views_count , shorts_video_count , and is_brand_connect_creator . This feature is only available to accounts on an allowlist. Added sub_country_locations to GenerateCreatorInsightsRequest for the ContentCreatorInsightsService . This allows specifying sub-country geographic locations to refine searches for creator insights. The sub_country_locations field is only supported when using the search_attributes oneof in the criteria field. If sub_country_locations are provided with other criteria types, the request will be invalid. This enables more granular geographical targeting and analysis for content creator insights. This feature is only available to accounts on an allowlist. Added ReachPlanService.ListPlannableUserLists , which returns first-party user lists owned by a customer, and added UserListInfo to the audience targeting options in GenerateReachForecastRequest . This lets you retrieve plannable user lists for a given customer and then generate reach forecasts for campaigns targeting those specific audiences. These enhancements improve tailored reach planning by incorporating your first-party audience data directly into forecasting. Reach forecasting is available to allowlisted accounts only. Videos Added AdFormatType.PAUSE ads served on organic YouTube videos on TV screens, which is included in reporting. These ads are displayed directly next to the static video frame on the pause screen. This does not include Demand Gen video ads displayed on the ad panel below or on top of a paused organic video, which are reported under AdFormatType.INFEED . v19.2 (2025-08-06) These EU political advertising changes have also been made in the v20.1 and v21 releases. EU political advertising changes Added Campaign.contains_eu_political_advertising . This field indicates whether your campaign contains political advertising content targeted towards the European Union. If this field is set to CONTAINS_EU_POLITICAL_ADVERTISING , the campaign will no longer serve in the EU starting September 22, 2025. For any existing campaigns, you should set the contains_eu_political_advertising field before attempting to change proximity, location, or location group targeting either at the campaign or ad group levels. The API calls to create or update these campaign or ad group criteria for existing campaigns will fail with a CriterionError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION error if the campaign hasn't completed the self-declaration. For versions v19.x and 20.x, the requirement to set this field is not yet enforced, but will be in the future. Wait for the announcement of this change. Trials and Experiments will throw an ExperimentError.MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION if the experiment's campaigns haven't self-declared whether they contain political advertising that targets the European Union. v19.1 (2025-04-16) The following features and changes were added in v19.1. Assets Added an asset_coverage field for AssetGroup that returns information about gaps in your asset group . Contains a subfield ad_strength_action_items which returns a list of actions that an advertiser can take to improve the ad strength of an asset group. Campaigns You can now rate or provide feedback for leads in Local Service Campaigns . As part of this change, v19.1 Added a new service named LocalServicesLeadService . You can use the ProvideLeadFeedback method to upload rating and feedback for leads. Added a new field named lead_feedback_submitted to LocalServicesLead to help determine if feedback was submitted to a lead. Added a new metric column biddable_cohort_app_post_install_conversions for App campaigns. Demand Gen Additional methods were introduced in the Planning services to support Demand Gen. Added support for AdGroup-level Channel Controls for Demand Gen campaigns . You can select a predefined general grouping of channels, or a subset of channels using the demand_gen_ad_group_settings field. The following channels are supported in the current release: YouTube In-Stream YouTube In-Feed YouTube Shorts Discover Gmail Display Exposed a new asset type for TALL_PORTRAIT_MARKETING_IMAGE . This asset type relates to the tall_portrait_marketing_images field of the Demand Gen Multi Asset Ad format . Change History Added support for three more resource types into ChangeStatusResourceType : CAMPAIGN_BUDGET ASSET_SET CAMPAIGN_ASSET_SET You can retrieve these three finer-grained types from the change_status report. Conversions You can now set the google_ads_conversion_customer field while creating a new customer using the Google Ads API. This was previously a read-only field. NOTE: This feature is behind a closed allowlist. To use it, contact your account manager. Note: This feature is behind a closed allowlist. To use it, contact your account manager. You can now specify the type of the customer associated with the conversion when uploading offline conversions. A new session_attributes field was introduced for ClickConversion . Local Services Ads Added a new RPC ProvideLeadFeedback to LocalServicesLeadService to provide feedback on the quality of LocalServicesLead . Added a new field lead_feedback_submitted to the LocalServicesLead resource that confirms if feedback was provided for a specific resource. Planning services Added support for Target frequency monthly forecasts in ReachPlanService.GenerateReachForecast . Developers can set TargetFrequencyTimeUnit.MONTHLY in TargetFrequencySettings when using the TARGET_FREQUENCY plannable product code to generate a Target frequency monthly reach forecast. Added a new method ReachPlanService.GenerateConversionRates , which allows advertisers to request suggested conversion rates for supported plannable products. Demand Gen forecasting in ReachPlanService.GenerateReachForecast : Developers can now request reach forecasts for Demand Gen campaigns. Developers can use the new DEMAND_GEN_MAX_CONVERSIONS plannable product code to generate Demand Gen reach forecasts. Added a new conversion_rate field that allows developers requesting Demand Gen reach forecasts to provide a conversion rate. Suggested conversion rates can be retrieved using the new ReachPlanService.GenerateConversionRates method. This field is required for Demand Gen forecasting requests. It is not supported for other plannable products. Added a new conversions field to returned forecasts. This field contains the number of conversions at a given point on the reach curve. Conversions are only supported for the DEMAND_GEN_MAX_CONVERSIONS plannable product. Recommendations The new ad_strength field is available for ImprovePerformanceMaxAdStrengthRecommendation , which returns the current ad strength score of the asset group associated with the recommendation. Shopping You can now override brand exclusions for Shopping ads in Performance Max campaigns. This is exposed through a new pmax_campaign_settings field at the campaign level, and it works only for PMax campaigns for Retail . A new CampaignError.BRAND_TARGETING_OVERRIDES_NOT_SUPPORTED error will be thrown if you attempt to set this field for an incompatible campaign type. Videos Added read-only support for Audio Ads. See Google Ads Help Center to learn about this feature. This change exposes: A new AdvertisingChannelSubType named YOUTUBE_AUDIO . A new AdGroupType named YOUTUBE_AUDIO . A new ad format enumeration named YOUTUBE_AUDIO_AD , and its corresponding YouTubeAudioAdInfo fields. Added new metrics and segments to query reach metrics with demo adjustment. As part of these changes, Two new metrics columns named coviewed_impressions and primary_impressions were introduced. Two new segments named adjusted_age_range and adjusted_gender were introduced. If either of the two new segments are selected alongside a reach metric field ( coviewed_impressions , primary_impressions , unique_users , or average_impression_frequency_per_user ), the other segment must be selected as well to retrieve valid stats for these columns. This feature is currently available only for allowlisted customers. v19 (2025-02-26) The following features and changes were added in v19. See Upgrade to the latest version for guidance. Account Management Added the following values to CustomerError to account for upcoming changes: CREATION_DENIED_FOR_POLICY_VIOLATION CREATION_DENIED_INELIGIBLE_MCC Ads Added DemandGenMultiAssetAdInfo.tall_portrait_marketing_images to support portrait image assets with aspect ratio 9:16 in Demand Gen ads. Assets (For allowlisted accounts only) Added support for message assets through Asset.business_message_asset , BusinessMessageAsset and the following enums and errors. Enums: AssetFieldType.BUSINESS_MESSAGE AssetType.BUSINESS_MESSAGE BusinessMessageCallToActionType BusinessMessageProvider Errors: AssetError.CUSTOMER_NOT_ON_ALLOWLIST_FOR_WHATSAPP_MESSAGE_ASSETS ResourceLimitType BUSINESS_MESSAGE_ASSET_LINKS_PER_CUSTOMER WHATSAPP_BUSINESS_MESSAGE_ASSET_LINKS_PER_CAMPAIGN WHATSAPP_BUSINESS_MESSAGE_ASSET_LINKS_PER_AD_GROUP Added AssetAutomationType.GENERATE_LANDING_PAGE_PREVIEW to support automatically generating a landing page preview. AssetAutomationType.GENERATE_SHORTER_YOUTUBE_VIDEOS is now opted-in by default for Demand Gen video responsive ads . (For allowlisted accounts only; allowlist is currently closed) Added Asset.app_deep_link_asset and AppDeepLinkAsset . Conversions Conversion goals LifecycleGoalValueSettings.high_lifetime_value is out of beta and now mutable. Added CustomerLifecycleGoal.owner_customer to show the resource name of the customer which owns the customer lifecycle goal. Deprecated ConversionActionType.SALESFORCE . Feeds Removed all feed-related entities, such as Feed , FeedMapping , FeedService , AdGroupFeed , feed_placeholder_view , etc. Users should now use assets to achieve the same purpose. Hotel & Travel Made min_days and max_days of ValueRuleItineraryAdvanceBookingWindow an optional field to allow specifying 0 as a value. This supports targeting for travel searches that happen today. Performance Max (For allowlisted accounts only) Brand guidelines Made Campaign.brand_guidelines_enabled mutable only when creating a Performance Max campaign. This is incompatible with Performance Max for travel goals . To enable brand guidelines for existing Performance Max campaigns, use a newly added CampaignService.EnablePMaxBrandGuidelines . Disabling brand guidelines is not supported. Added Campaign.brand_guidelines and BrandGuidelines to allow setting the brand's colors and font family. New error values: BatchJobError.CAMPAIGN_AND_CAMPAIGN_ASSET_TRANSACTION_FAILURE BrandGuidelinesMigrationError BRAND_GUIDELINES_ALREADY_ENABLED CANNOT_ENABLE_BRAND_GUIDELINES_FOR_REMOVED_CAMPAIGN BRAND_GUIDELINES_LOGO_LIMIT_EXCEEDED CANNOT_AUTO_POPULATE_BRAND_ASSETS_WHEN_BRAND_ASSETS_PROVIDED AUTO_POPULATE_BRAND_ASSETS_REQUIRED_WHEN_BRAND_ASSETS_OMITTED TOO_MANY_ENABLE_OPERATIONS CampaignError BRAND_GUIDELINES_NOT_ENABLED_FOR_CAMPAIGN BRAND_GUIDELINES_MAIN_AND_ACCENT_COLORS_REQUIRED BRAND_GUIDELINES_COLOR_INVALID_FORMAT BRAND_GUIDELINES_UNSUPPORTED_FONT_FAMILY BRAND_GUIDELINES_UNSUPPORTED_CHANNEL CANNOT_ENABLE_BRAND_GUIDELINES_FOR_TRAVEL_GOALS CUSTOMER_NOT_ALLOWLISTED_FOR_BRAND_GUIDELINES Added AssetAutomationType.GENERATE_ENHANCED_YOUTUBE_VIDEOS to support automatically generating enhanced video assets for Performance Max campaigns. Planning (For allowlisted accounts only) Added ContentCreatorInsightsService.GenerateTrendingInsights which allows users to see trending content topics on YouTube for given audience definitions. Added GenerateCreatorInsightsRequest.country_locations[] to specify countries to search for the given criteria Added GenerateCreatorInsightsRequest.search_brand to specify a brand to search for creators Added new fields to YouTubeChannelInsights to provide additional channel information for search_channels requests: channel_url channel_description top_videos Added new metadata fields to AudienceInsightsAttributeMetadata : youtube_video_metadata user_interest_attribute_metadata knowledge_graph_attribute_metadata Videos Following the release of DataLinkService.CreateDataLink , we added the following methods to allow for mutating previously created data links: RemoveDataLink for removing data links in a Google Ads account UpdateDataLink for accepting, rejecting and revoking data links in a Google Ads account Removed support for VIDEO_OUTSTREAM from the following enums: AdType AdvertisingChannelSubType AdGroupType Archived release notes See Sunsetted versions for archived release notes. Send feedback Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates. Last updated 2025-12-03 UTC. Need to tell us more? [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-12-03 UTC."],[],[]] Blog Visit our blog for important announcements. Client Libraries Use our officially supported client libraries. YouTube Access our video contents. Discord Join the Google Ads Discord server. Android Chrome Firebase Google Cloud Platform Google AI All products Terms Privacy Manage cookies English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어
2026-01-13T09:30:14
https://www.linkedin.com/legal/cookie-policy?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fposts%2Fndc-conferences_check-out-nick-chapsas-workshop-building-activity-7416435226064744449-suZ8&trk=registration-frontend_join-form-cookie-policy
Cookie Policy | LinkedIn Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws Cookie Policy Effective on June 3, 2022 At LinkedIn, we believe in being clear and open about how we collect and use data related to you. This Cookie Policy applies to any LinkedIn product or service that links to this policy or incorporates it by reference. We use cookies and similar technologies such as pixels, local storage and mobile ad IDs (collectively referred to in this policy as “cookies”) to collect and use data as part of our Services, as defined in our Privacy Policy (“Services”) and which includes our sites, communications, mobile applications and off-site Services, such as our ad services and the “Apply with LinkedIn” and “Share with LinkedIn” plugins or tags. In the spirit of transparency, this policy provides detailed information about how and when we use these technologies.  By continuing to visit or use our Services, you are agreeing to the use of cookies and similar technologies for the purposes described in this policy. What technologies are used? ENTER A SUMMARY Type of technology Description Cookies A cookie is a small file placed onto your device that enables LinkedIn features and functionality. Any browser visiting our sites may receive cookies from us or cookies from third parties such as our customers, partners or service providers. We or third parties may also place cookies in your browser when you visit non-LinkedIn sites that display ads or that host our plugins or tags .   We use two types of cookies: persistent cookies and session cookies. A persistent cookie lasts beyond the current session and is used for many purposes, such as recognizing you as an existing user, so it’s easier to return to LinkedIn and interact with our Services without signing in again. Since a persistent cookie stays in your browser, it will be read by LinkedIn when you return to one of our sites or visit a third party site that uses our Services. Session cookies last only as long as the session (usually the current visit to a website or a browser session). Pixels A pixel is a tiny image that may be embedded within web pages and emails, requiring a call (which provides device and visit information) to our servers in order for the pixel to be rendered in those web pages and emails. We use pixels to learn more about your interactions with email content or web content, such as whether you interacted with ads or posts. Pixels can also enable us and third parties to place cookies on your browser. Local storage Local storage enables a website or application to store information locally on your device(s). Local storage may be used to improve the LinkedIn experience, for example, by enabling features, remembering your preferences and speeding up site functionality. Other similar technologies We also use other tracking technologies, such as mobile advertising IDs and tags for similar purposes as described in this Cookie Policy. References to similar technologies in this policy includes pixels, local storage, and other tracking technologies. Our cookie tables lists cookies and similar technologies that are used as part of our Services. Please note that the names of cookies and similar technologies may change over time. What are these technologies used for? Below we describe the purposes for which we use these technologies. ENTER SUMMARY Purpose Description Authentication We use cookies and similar technologies to recognize you when you visit our Services.   If you’re signed into LinkedIn, these technologies help us show you the right information and personalize your experience in line with your settings. For example, cookies enable LinkedIn to identify you and verify your account.   Security We use cookies and similar technologies to make your interactions with our Services faster and more secure.   For example, we use cookies to enable and support our security features, keep your account safe and to help us detect malicious activity and violations of our User Agreement.   Preferences, features and services We use cookies and similar technologies to enable the functionality of our Services, such as helping you to fill out forms on our Services more easily and providing you with features, insights and customized content in conjunction with our plugins. We also use these technologies to remember information about your browser and your preferences.   For example, cookies can tell us which language you prefer and what your communications preferences are. We may also use local storage to speed up site functionality.   Customized content We use cookies and similar technologies to customize your experience on our Services.   For example, we may use cookies to remember previous searches so that when you return to our services, we can offer additional information that relates to your previous search. Plugins on and off LinkedIn We use cookies and similar technologies to enable LinkedIn plugins both on and off the LinkedIn sites.   For example, our plugins, including the "Apply with LinkedIn" button or the "Share" button may be found on LinkedIn or third-party sites, such as the sites of our customers and partners. Our plugins use cookies and other technologies to provide analytics and recognize you on LinkedIn and third-party sites. If you interact with a plugin (for instance, by clicking "Apply"), the plugin will use cookies to identify you and initiate your request to apply.   You can learn more about plugins in our Privacy Policy .   Advertising Cookies and similar technologies help us show relevant advertising to you more effectively, both on and off our Services and to measure the performance of such ads. We use these technologies to learn whether content has been shown to you or whether someone who was presented with an ad later came back and took an action (e.g., downloaded a white paper or made a purchase) on another site. Similarly, our partners or service providers may use these technologies to determine whether we've shown an ad or a post and how it performed or provide us with information about how you interact with ads.   We may also work with our customers and partners to show you an ad on or off LinkedIn, such as after you’ve visited a customer’s or partner’s site or application. These technologies help us provide aggregated information to our customers and partners.   For further information regarding the use of cookies for advertising purposes, please see Sections 1.4 and 2.4 of the Privacy Policy .   As noted in Section 1.4 of our Privacy Policy, outside Designated Countries , we also collect (or rely on others who collect) information about your device where you have not engaged with our Services (e.g., ad ID, IP address, operating system and browser information) so we can provide our Members with relevant ads and better understand their effectiveness.   For further information, please see Section 1.4 of the Privacy Policy . Analytics and research Cookies and similar technologies help us learn more about how well our Services and plugins perform in different locations.   We or our service providers use these technologies to understand, improve, and research products, features and services, including as you navigate through our sites or when you access LinkedIn from other sites, applications or devices. We or our service providers, use these technologies to determine and measure the performance of ads or posts on and off LinkedIn and to learn whether you have interacted with our websites, content or emails and provide analytics based on those interactions.   We also use these technologies to provide aggregated information to our customers and partners as part of our Services.   If you are a LinkedIn member but logged out of your account on a browser, LinkedIn may still continue to log your interaction with our Services on that browser until the expiration of the cookie in order to generate usage analytics for our Services. We may share these analytics in aggregate form with our customers. What third parties use these technologies in connection with our Services? Third parties such as our customers, partners and service providers may use cookies in connection with our Services. For example, third parties may use cookies in their LinkedIn pages, job posts and their advertisements on and off LinkedIn for their own marketing purposes. For an illustration, please visit  LinkedIn’s Help Center . Third parties may also use cookies in connection with our off-site Services, such as LinkedIn ad services. Third parties may use cookies to help us to provide our Services. We may also work with third parties for our own marketing purposes and to enable us to analyze and research our Services. Your Choices You have choices on how LinkedIn uses cookies and similar technologies. Please note that if you limit the ability of LinkedIn to set cookies and similar technologies, you may worsen your overall user experience, since it may no longer be personalized to you. It may also stop you from saving customized settings like login information. Opt out of targeted advertising As described in Section 2.4 of the Privacy Policy , you have choices regarding the personalized ads you may see. LinkedIn Members can adjust their settings here . Visitor controls can be found here . Some mobile device operating systems such as Android provide the ability to control the use of mobile advertising IDs for ads personalization. You can learn how to use these controls by visiting the manufacturer’s website. We do not use iOS mobile advertising IDs for targeted advertising. Browser Controls Most browsers allow you to control cookies through their settings, which may be adapted to reflect your consent to the use of cookies. Further, most browsers also enable you to review and erase cookies, including LinkedIn cookies. To learn more about browser controls, please consult the documentation that your browser manufacturer provides. What is Do Not Track (DNT)? DNT is a concept that has been promoted by regulatory agencies such as the U.S. Federal Trade Commission (FTC), for the Internet industry to develop and implement a mechanism for allowing Internet users to control the tracking of their online activities across websites by using browser settings. As such, LinkedIn does not generally respond to “do not track” signals. Other helpful resources To learn more about advertisers’ use of cookies, please visit the following links: Internet Advertising Bureau (US) European Interactive Digital Advertising Alliance (EU) Internet Advertising Bureau (EU) LinkedIn © 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://www.linkedin.com/uas/login?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fposts%2Fndc-conferences_check-out-nick-chapsas-workshop-building-activity-7416435226064744449-suZ8&fromSignIn=true&trk=cold_join_sign_in
LinkedIn Login, Sign in | LinkedIn Sign in Sign in with Apple Sign in with a passkey By clicking Continue, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy . or Email or phone Password Show Forgot password? Keep me logged in Sign in We’ve emailed a one-time link to your primary email address Click on the link to sign in instantly to your LinkedIn account. If you don’t see the email in your inbox, check your spam folder. Resend email Back New to LinkedIn? Join now Agree & Join LinkedIn By clicking Continue, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy . LinkedIn © 2026 User Agreement Privacy Policy Community Guidelines Cookie Policy Copyright Policy Send Feedback Language العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional))
2026-01-13T09:30:14
https://www.linkedin.com/legal/cookie-policy?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fsearch%2Fresults%2Fpeople%2F%3FfacetCurrentCompany%3D%255B10446421%255D&trk=registration-frontend_join-form-cookie-policy#lithograph-app
Cookie Policy | LinkedIn Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws Cookie Policy Effective on June 3, 2022 At LinkedIn, we believe in being clear and open about how we collect and use data related to you. This Cookie Policy applies to any LinkedIn product or service that links to this policy or incorporates it by reference. We use cookies and similar technologies such as pixels, local storage and mobile ad IDs (collectively referred to in this policy as “cookies”) to collect and use data as part of our Services, as defined in our Privacy Policy (“Services”) and which includes our sites, communications, mobile applications and off-site Services, such as our ad services and the “Apply with LinkedIn” and “Share with LinkedIn” plugins or tags. In the spirit of transparency, this policy provides detailed information about how and when we use these technologies.  By continuing to visit or use our Services, you are agreeing to the use of cookies and similar technologies for the purposes described in this policy. What technologies are used? ENTER A SUMMARY Type of technology Description Cookies A cookie is a small file placed onto your device that enables LinkedIn features and functionality. Any browser visiting our sites may receive cookies from us or cookies from third parties such as our customers, partners or service providers. We or third parties may also place cookies in your browser when you visit non-LinkedIn sites that display ads or that host our plugins or tags .   We use two types of cookies: persistent cookies and session cookies. A persistent cookie lasts beyond the current session and is used for many purposes, such as recognizing you as an existing user, so it’s easier to return to LinkedIn and interact with our Services without signing in again. Since a persistent cookie stays in your browser, it will be read by LinkedIn when you return to one of our sites or visit a third party site that uses our Services. Session cookies last only as long as the session (usually the current visit to a website or a browser session). Pixels A pixel is a tiny image that may be embedded within web pages and emails, requiring a call (which provides device and visit information) to our servers in order for the pixel to be rendered in those web pages and emails. We use pixels to learn more about your interactions with email content or web content, such as whether you interacted with ads or posts. Pixels can also enable us and third parties to place cookies on your browser. Local storage Local storage enables a website or application to store information locally on your device(s). Local storage may be used to improve the LinkedIn experience, for example, by enabling features, remembering your preferences and speeding up site functionality. Other similar technologies We also use other tracking technologies, such as mobile advertising IDs and tags for similar purposes as described in this Cookie Policy. References to similar technologies in this policy includes pixels, local storage, and other tracking technologies. Our cookie tables lists cookies and similar technologies that are used as part of our Services. Please note that the names of cookies and similar technologies may change over time. What are these technologies used for? Below we describe the purposes for which we use these technologies. ENTER SUMMARY Purpose Description Authentication We use cookies and similar technologies to recognize you when you visit our Services.   If you’re signed into LinkedIn, these technologies help us show you the right information and personalize your experience in line with your settings. For example, cookies enable LinkedIn to identify you and verify your account.   Security We use cookies and similar technologies to make your interactions with our Services faster and more secure.   For example, we use cookies to enable and support our security features, keep your account safe and to help us detect malicious activity and violations of our User Agreement.   Preferences, features and services We use cookies and similar technologies to enable the functionality of our Services, such as helping you to fill out forms on our Services more easily and providing you with features, insights and customized content in conjunction with our plugins. We also use these technologies to remember information about your browser and your preferences.   For example, cookies can tell us which language you prefer and what your communications preferences are. We may also use local storage to speed up site functionality.   Customized content We use cookies and similar technologies to customize your experience on our Services.   For example, we may use cookies to remember previous searches so that when you return to our services, we can offer additional information that relates to your previous search. Plugins on and off LinkedIn We use cookies and similar technologies to enable LinkedIn plugins both on and off the LinkedIn sites.   For example, our plugins, including the "Apply with LinkedIn" button or the "Share" button may be found on LinkedIn or third-party sites, such as the sites of our customers and partners. Our plugins use cookies and other technologies to provide analytics and recognize you on LinkedIn and third-party sites. If you interact with a plugin (for instance, by clicking "Apply"), the plugin will use cookies to identify you and initiate your request to apply.   You can learn more about plugins in our Privacy Policy .   Advertising Cookies and similar technologies help us show relevant advertising to you more effectively, both on and off our Services and to measure the performance of such ads. We use these technologies to learn whether content has been shown to you or whether someone who was presented with an ad later came back and took an action (e.g., downloaded a white paper or made a purchase) on another site. Similarly, our partners or service providers may use these technologies to determine whether we've shown an ad or a post and how it performed or provide us with information about how you interact with ads.   We may also work with our customers and partners to show you an ad on or off LinkedIn, such as after you’ve visited a customer’s or partner’s site or application. These technologies help us provide aggregated information to our customers and partners.   For further information regarding the use of cookies for advertising purposes, please see Sections 1.4 and 2.4 of the Privacy Policy .   As noted in Section 1.4 of our Privacy Policy, outside Designated Countries , we also collect (or rely on others who collect) information about your device where you have not engaged with our Services (e.g., ad ID, IP address, operating system and browser information) so we can provide our Members with relevant ads and better understand their effectiveness.   For further information, please see Section 1.4 of the Privacy Policy . Analytics and research Cookies and similar technologies help us learn more about how well our Services and plugins perform in different locations.   We or our service providers use these technologies to understand, improve, and research products, features and services, including as you navigate through our sites or when you access LinkedIn from other sites, applications or devices. We or our service providers, use these technologies to determine and measure the performance of ads or posts on and off LinkedIn and to learn whether you have interacted with our websites, content or emails and provide analytics based on those interactions.   We also use these technologies to provide aggregated information to our customers and partners as part of our Services.   If you are a LinkedIn member but logged out of your account on a browser, LinkedIn may still continue to log your interaction with our Services on that browser until the expiration of the cookie in order to generate usage analytics for our Services. We may share these analytics in aggregate form with our customers. What third parties use these technologies in connection with our Services? Third parties such as our customers, partners and service providers may use cookies in connection with our Services. For example, third parties may use cookies in their LinkedIn pages, job posts and their advertisements on and off LinkedIn for their own marketing purposes. For an illustration, please visit  LinkedIn’s Help Center . Third parties may also use cookies in connection with our off-site Services, such as LinkedIn ad services. Third parties may use cookies to help us to provide our Services. We may also work with third parties for our own marketing purposes and to enable us to analyze and research our Services. Your Choices You have choices on how LinkedIn uses cookies and similar technologies. Please note that if you limit the ability of LinkedIn to set cookies and similar technologies, you may worsen your overall user experience, since it may no longer be personalized to you. It may also stop you from saving customized settings like login information. Opt out of targeted advertising As described in Section 2.4 of the Privacy Policy , you have choices regarding the personalized ads you may see. LinkedIn Members can adjust their settings here . Visitor controls can be found here . Some mobile device operating systems such as Android provide the ability to control the use of mobile advertising IDs for ads personalization. You can learn how to use these controls by visiting the manufacturer’s website. We do not use iOS mobile advertising IDs for targeted advertising. Browser Controls Most browsers allow you to control cookies through their settings, which may be adapted to reflect your consent to the use of cookies. Further, most browsers also enable you to review and erase cookies, including LinkedIn cookies. To learn more about browser controls, please consult the documentation that your browser manufacturer provides. What is Do Not Track (DNT)? DNT is a concept that has been promoted by regulatory agencies such as the U.S. Federal Trade Commission (FTC), for the Internet industry to develop and implement a mechanism for allowing Internet users to control the tracking of their online activities across websites by using browser settings. As such, LinkedIn does not generally respond to “do not track” signals. Other helpful resources To learn more about advertisers’ use of cookies, please visit the following links: Internet Advertising Bureau (US) European Interactive Digital Advertising Alliance (EU) Internet Advertising Bureau (EU) LinkedIn © 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://www.linkedin.com/legal/user-agreement?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Ffeed%2Fhashtag%2Fndclondon&trk=registration-frontend_join-form-user-agreement#introduction
User Agreement | LinkedIn Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Effective on November 3, 2025 Our mission is to connect the world’s professionals to allow them to be more productive and successful. Our services are designed to promote economic opportunity for our members by enabling you and millions of other professionals to meet, exchange ideas, learn, and find opportunities or employees, work, and make decisions in a network of trusted relationships. Table of Contents: Introduction Obligations Rights and Limits Disclaimer and Limit of Liability Termination Governing Law and Dispute Resolution General Terms LinkedIn “Dos and Don’ts” Complaints Regarding Content How To Contact Us Introduction 1.1 Contract When you use our Services you agree to all of these terms. Your use of our Services is also subject to our Cookie Policy and our Privacy Policy, which covers how we collect, use, share, and store your personal information. By creating a LinkedIn account or accessing or using our Services (described below), you are agreeing to enter into a legally binding contract with LinkedIn (even if you are using third party credentials or using our Services on behalf of a company). If you do not agree to this contract (“Contract” or “User Agreement”), do not create an account or access or otherwise use any of our Services. If you wish to terminate this Contract at any time, you can do so by closing your account and no longer accessing or using our Services. As a Visitor or Member of our Services, the collection, use, and sharing of your personal data is subject to our Privacy Policy , our Cookie Policy and other documents referenced in our Privacy Policy , and updates. You acknowledge and have read our Privacy Policy . Services This Contract applies to LinkedIn.com, LinkedIn-branded apps, and other LinkedIn-related sites, apps, communications, and other services that state that they are offered under this Contract (“Services”), including the offsite collection of data for those Services, such as via our ads and the “Apply with LinkedIn” and “Share with LinkedIn” plugins. LinkedIn and other Key Terms You are entering into this Contract with LinkedIn (also referred to as “we” and “us”). Designated Countries . We use the term “Designated Countries” to refer to countries in the European Union (EU), European Economic Area (EEA), and Switzerland. If you reside in the “Designated Countries”, you are entering into this Contract with LinkedIn Ireland Unlimited Company (“LinkedIn Ireland”) and LinkedIn Ireland will be the controller of your personal data provided to, or collected by or for, or processed in connection with our Services. If you reside outside of the “Designated Countries”, you are entering into this Contract with LinkedIn Corporation (“LinkedIn Corp.”) and LinkedIn Corp. will be the controller of (or business responsible for) your personal data provided to, or collected by or for, or processed in connection with our Services. Affiliates . Affiliates are companies controlling, controlled by or under common control with us, including, for example, LinkedIn Ireland, LinkedIn Corporation, LinkedIn Singapore and Microsoft Corporation or any of its subsidiaries (e.g., Github, Inc.). Social Action . Actions that members take on our services such as likes, comments, follows, sharing content. Content . Content includes, for example, feed posts, feedback, comments, profiles, articles (and contributions), group posts, job postings, messages (including InMails), videos, photos, audio, and/or PDFs. 1.2 Members and Visitors This Contract applies to Members and Visitors. When you register and join the LinkedIn Services, you become a “Member”. If you have chosen not to register for our Services, you may access certain features as a “Visitor.” 1.3 Changes We may make changes to this Contract. We may modify this Contract, our Privacy Policy and our Cookie Policy from time to time. If we materially change these terms or if we are legally required to provide notice, we will provide you notice through our Services, or by other means, to provide you the opportunity to review the changes before they become effective. However, we may not always provide prior notice of changes to these terms (1) when those changes are legally required to be implemented with immediate effect, or (2) when those changes relate to a newly launched service or feature. We agree that changes cannot be retroactive. If you object to any of these changes, you may close your account . Your continued use of our Services after we publish or send a notice about our changes to these terms means that you are consenting to the updated terms as of their effective date. 2. Obligations 2.1 Service Eligibility Here are some promises that you make to us in this Contract: You’re eligible to enter into this Contract and you are at least our “Minimum Age.” The Services are not for use by anyone under the age of 16. To use the Services, you agree that: (1) you must be the "Minimum Age" (described below) or older; (2) you will only have one LinkedIn account, which must be in your real name; and (3) you are not already restricted by LinkedIn from using the Services. Creating an account with false information is a violation of our terms, including accounts registered on behalf of others or persons under the age of 16. “Minimum Age” means 16 years old. However, if law requires that you must be older in order for LinkedIn to lawfully provide the Services to you without parental consent (including using your personal data) then the Minimum Age is such older age. Learn More 2.2 Your Account You will keep your password a secret You will not share your account with anyone else and will follow our policies and the law. Members are account holders. You agree to: (1) protect against wrongful access to your account (e.g., use a strong password and keep it confidential); (2) not share or transfer your account or any part of it (e.g., sell or transfer the personal data of others by transferring your connections); and (3) follow the law, our list of Dos and Don’ts (below), and our Professional Community Policies . Learn More You are responsible for anything that happens through your account unless you close it or report misuse. As between you and others (including your employer), your account belongs to you. However, if the Services were purchased by another party for you to use in connection with your work for them (e.g., Recruiter seat or LinkedIn Learning subscription bought by your employer), the party paying for such Service has the right to control access to and get reports on your use of such paid Service; however, they do not have rights to your personal account. 2.3 Payment You’ll honor your payment obligations and you are okay with us storing your payment information. You understand that there may be fees and taxes that are added to our prices. Refunds are subject to our policy, and we may modify our prices and those modified prices will apply prospectively. If you buy any of our paid Services, you agree to pay us the applicable fees and taxes and you agree to the additional terms specific to the paid Services. Failure to pay these fees will result in the termination of your paid Services. Also, you agree that: Your purchase may be subject to foreign exchange fees or differences in prices based on location (e.g., exchange rates). We may store and continue billing your payment method (e.g., credit card), even after it has expired, to avoid interruptions in your paid Services and to use it to pay for other Services you may buy. If your primary payment method fails, we may automatically charge a secondary payment method, if you have provided one. You may update or change your payment method. Learn more If you purchase a subscription, your payment method automatically will be charged at the start of each subscription period for the fees and taxes applicable to that period. To avoid future charges, cancel before the renewal date. Learn how to cancel or suspend your paid subscription Services. We may modify our prices effective prospectively upon reasonable notice to the extent allowed under the law. All of your paid Services are subject to LinkedIn’s refund policy . We may calculate taxes payable by you based on the billing information that you provide us. You can get a copy of your invoice through your LinkedIn account settings under “ Purchase History ”. 2.4 Notices and Messages You’re okay with us providing notices and messages to you through our websites, apps, and contact information. If your contact information is out of date, you may miss out on important notices. You agree that we will provide notices and messages to you in the following ways: (1) within the Services or (2) sent to the contact information you provided us (e.g., email, mobile number, physical address). You agree to keep your contact information up to date. Please review your settings to control and limit the types of messages you receive from us. 2.5 Sharing When you share information on our Services, others can see, copy and use that information. Our Services allow sharing of information (including content) in many ways, such as through your profile, posts, articles, group posts, links to news articles, job postings, messages, and InMails. Depending on the feature and choices you make, information that you share may be seen by other Members, Visitors, or others (on or off of the Services). Where we have made settings available, we will honor the choices you make about who can see content or other information (e.g., message content to your addressees, sharing content only to LinkedIn connections, restricting your profile visibility from search tools, or opting not to notify others of your LinkedIn profile update). For job searching activities, we default to not notifying your connections or the public. So, if you apply for a job through our Services or opt to signal that you are interested in a job, our default is to share it only with the job poster. To the extent that laws allow this, we are not obligated to publish any content or other information on our Services and can remove it with or without notice. 3. Rights and Limits 3.1. Your License to LinkedIn You own all of your original content that you provide to us, but you also grant us a non-exclusive license to it. We’ll honor the choices you make about who gets to see your content, including how it can be used for ads. As between you and LinkedIn, you own your original content that you submit or post to the Services.  You grant LinkedIn and our Affiliates the following non-exclusive license to the content and other information you provide (e.g., share, post, upload, and/or otherwise submit) to our Services: A worldwide, transferable and sublicensable right to use, copy, modify, distribute, publicly perform and display, host, and process your content and other information without any further consent, notice and/or compensation to you or others. These rights are limited in the following ways: You can end this license for specific content by deleting such content from the Services, or generally by closing your account, except (a) to the extent you (1) shared it with others as part of the Services and they copied, re-shared it or stored it, (2) we had already sublicensed others prior to your content removal or closing of your account, or (3) we are required by law to retain or share it with others, and (b) for the reasonable time it takes to remove the content you delete from backup and other systems. We will not include your content in advertisements for the products and services of third parties to others without your separate consent (including sponsored content). However, without compensation to you or others, ads may be served near your content and other information, and your social actions may be visible and included with ads, as noted in the Privacy Policy. If you use a Service feature, we may mention that with your name or photo to promote that feature within our Services, subject to your settings. We will honor the audience choices for shared content (e.g., “Connections only”). For example, if you choose to share your post to "Anyone on or off LinkedIn” (or similar): (a) we may make it available off LinkedIn; (b) we may enable others to publicly share onto third-party services (e.g., a Member embedding your post on a third party service); and/or (c) we may enable search tools to make that public content findable though their services. Learn More While we may edit and make format changes to your content (such as translating or transcribing it, modifying the size, layout or file type, and removing or adding labels or metadata), we will take steps to avoid materially modifying the meaning of your expression in content you share with others.  Because you own your original content and we only have non-exclusive rights to it, you may choose to make it available to others, including under the terms of a Creative Commons license . You and LinkedIn agree that if content includes personal data, it is subject to our Privacy Policy. You and LinkedIn agree that we may access, store, process, and use any information (including content and/or personal data) that you provide in accordance with the terms of the Privacy Policy and your choices (including settings). By submitting suggestions or other feedback regarding our Services to LinkedIn, you agree that LinkedIn can use and share (but does not have to) such feedback for any purpose without compensation to you. You promise to only provide content and other information that you have the right to share and that your LinkedIn profile will be truthful. You agree to only provide content and other information that does not violate the law or anyone’s rights (including intellectual property rights). You have choices about how much information to provide on your profile but also agree that the profile information you provide will be truthful. LinkedIn may be required by law to remove certain content and other information in certain countries. 3.2 Service Availability We may change or limit the availability of some features, or end any Service. We may change, suspend or discontinue any of our Services. We may also limit the availability of features, content and other information so that they are not available to all Visitors or Members (e.g., by country or by subscription access). We don’t promise to store or show (or keep showing) any information (including content) that you’ve shared. LinkedIn is not a storage service. You agree that we have no obligation to store, maintain or provide you a copy of any content or other information that you or others provide, except to the extent required by applicable law and as noted in our Privacy Policy. 3.3 Other Content, Sites and Apps Your use of others’ content and information posted on our Services, is at your own risk. Others may offer their own products and services through our Services, and we aren’t responsible for those third-party activities. Others’ Content: By using the Services, you may encounter content or other information that might be inaccurate, incomplete, delayed, misleading, illegal, offensive, or otherwise harmful. You agree that we are not responsible for content or other information made available through or within the Services by others, including Members. While we apply automated tools to review much of the content and other information presented in the Services, we cannot always prevent misuse of our Services, and you agree that we are not responsible for any such misuse. You also acknowledge the risk that others may share inaccurate or misleading information about you or your organization, and that you or your organization may be mistakenly associated with content about others, for example, when we let connections and followers know you or your organization were mentioned in the news. Members have choices about this feature . Others’ Products and Services: LinkedIn may help connect you to other Members (e.g., Members using Services Marketplace or our enterprise recruiting, jobs, sales, or marketing products) who offer you opportunities (on behalf of themselves, their organizations, or others) such as offers to become a candidate for employment or other work or offers to purchase products or services. You acknowledge that LinkedIn does not perform these offered services, employ those who perform these services, or provide these offered products.  You further acknowledge that LinkedIn does not supervise, direct, control, or monitor Members in the making of these offers, or in their providing you with work, delivering products or performing services, and you agree that (1) LinkedIn is not responsible for these offers, or performance or procurement of them, (2) LinkedIn does not endorse any particular Member’s offers, and (3) LinkedIn is not an agent or employment agency on behalf of any Member offering employment or other work, products or services. With respect to employment or other work, LinkedIn does not make employment or hiring decisions on behalf of Members offering opportunities and does not have such authority from Members or organizations using our products.  For Services Marketplace , (a) you must be at least 18 years of age to procure, offer, or perform services, and (b) you represent and warrant that you have all the required licenses and will provide services consistent with the relevant industry standards and our Professional Community Policies .  Others’ Events: Similarly, LinkedIn may help you register for and/or attend events organized by Members and connect with other Members who are attendees at such events. You agree that (1) LinkedIn is not responsible for the conduct of any of the Members or other attendees at such events, (2) LinkedIn does not endorse any particular event listed on our Services, (3) LinkedIn does not review and/or vet any of these events or speakers, and (4) you will adhere to the terms and conditions that apply to such events. 3.4 Limits We have the right to limit how you connect and interact on our Services. LinkedIn reserves the right to limit your use of the Services, including the number of your connections and your ability to contact other Members. LinkedIn reserves the right to restrict, suspend, or terminate your account if you breach this Contract or the law or are misusing the Services (e.g., violating any of the Dos and Don’ts or Professional Community Policies ). We can also remove any content or other information you shared if we believe it violates our Professional Community Policies or Dos and Don’ts or otherwise violates this Contract. Learn more about how we moderate content. 3.5 Intellectual Property Rights We’re providing you notice about our intellectual property rights. LinkedIn reserves all of its intellectual property rights in the Services. Trademarks and logos used in connection with the Services are the trademarks of their respective owners. LinkedIn, and “in” logos and other LinkedIn trademarks, service marks, graphics and logos used for our Services are trademarks or registered trademarks of LinkedIn. 3.6 Recommendations and Automated Processing We use data and other information about you to make and order relevant suggestions and to generate content for you and others. Recommendations: We use the data and other information that you provide and that we have about Members and content on the Services to make recommendations for connections, content, ads, and features that may be useful to you. We use that data and other information to recommend and to present information to you in an order that may be more relevant for you. For example, that data and information may be used to recommend jobs to you and you to recruiters and to organize content in your feed in order to optimize your experience and use of the Services. Keeping your profile accurate and up to date helps us to make these recommendations more accurate and relevant. Learn More   Generative AI Features: By using the Services, you may interact with features we offer that automate content generation for you. The content that is generated might be inaccurate, incomplete, delayed, misleading or not suitable for your purposes. Please review and edit such content before sharing with others. Like all content you share on our Services, you are responsible for ensuring it complies with our Professional Community Policies , including not sharing misleading information. The Services may include content automatically generated and shared using tools offered by LinkedIn or others off LinkedIn. Like all content and other information on our Services, regardless of whether it's labeled as created by “AI”, be sure to carefully review before relying on it. 4. Disclaimer and Limit of Liability 4.1 No Warranty This is our disclaimer of legal liability for the quality, safety, or reliability of our Services. LINKEDIN AND ITS AFFILIATES MAKE NO REPRESENTATION OR WARRANTY ABOUT THE SERVICES, INCLUDING ANY REPRESENTATION THAT THE SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, AND PROVIDE THE SERVICES (INCLUDING CONTENT, OUTPUT AND INFORMATION) ON AN “AS IS” AND “AS AVAILABLE” BASIS. TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, LINKEDIN AND ITS AFFILIATES DISCLAIM ANY IMPLIED OR STATUTORY WARRANTY, INCLUDING ANY IMPLIED WARRANTY OF TITLE, ACCURACY, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. If you plan to use content, output and information for any reason, it is your responsibility to verify its accuracy and fitness for your purposes, because any content, output and information on the service may not reflect accurate, complete, or current information. 4.2 Exclusion of Liability These are the limits of legal liability we may have to you. TO THE FULLEST EXTENT PERMITTED BY LAW (AND UNLESS LINKEDIN HAS ENTERED INTO A SEPARATE WRITTEN AGREEMENT THAT OVERRIDES THIS CONTRACT), LINKEDIN AND ITS AFFILIATES, WILL NOT BE LIABLE IN CONNECTION WITH THIS CONTRACT FOR LOST PROFITS OR LOST BUSINESS OPPORTUNITIES, REPUTATION (E.G., OFFENSIVE OR DEFAMATORY STATEMENTS), LOSS OF DATA (E.G., DOWN TIME OR LOSS, USE OF, OR CHANGES TO, YOUR INFORMATION OR CONTENT) OR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES. LINKEDIN AND ITS AFFILIATES WILL NOT BE LIABLE TO YOU IN CONNECTION WITH THIS CONTRACT FOR ANY AMOUNT THAT EXCEEDS (A) THE TOTAL FEES PAID OR PAYABLE BY YOU TO LINKEDIN FOR THE SERVICES DURING THE TERM OF THIS CONTRACT, IF ANY, OR (B) US $1000. 4.3 Basis of the Bargain; Exclusions The limitations of liability in this Section 4 are part of the basis of the bargain between you and LinkedIn and shall apply to all claims of liability (e.g., warranty, tort, negligence, contract and law) even if LinkedIn or its affiliates has been told of the possibility of any such damage, and even if these remedies fail their essential purpose. THESE LIMITATIONS OF LIABILITY DO NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY OR FOR FRAUD, GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, OR IN CASES OF NEGLIGENCE, WHERE A MATERIAL OBLIGATION HAS BEEN BREACHED. A MATERIAL OBLIGATION BEING AN OBLIGATION WHICH FORMS A PREREQUISITE TO OUR DELIVERY OF SERVICES AND ON WHICH YOU MAY REASONABLY RELY, BUT ONLY TO THE EXTENT THAT THE DAMAGES WERE DIRECTLY CAUSED BY THE BREACH AND WERE FORESEEABLE UPON CONCLUSION OF THIS CONTRACT AND TO THE EXTENT THAT THEY ARE TYPICAL IN THE CONTEXT OF THIS CONTRACT. 5. Termination We can each end this Contract, but some rights and obligations survive. Both you and LinkedIn may terminate this Contract at any time with notice to the other. On termination, you lose the right to access or use the Services. The following shall survive termination: Our rights to use and disclose your feedback; Section 3 (subject to 3.1.1); Sections 4, 6, 7, and 8.2 of this Contract; and Any amounts owed by either party prior to termination remain owed after termination. You can visit our Help Center to learn about how to close your account 6. Governing Law and Dispute Resolution In the unlikely event we end up in a legal dispute, depending on where you live, you and LinkedIn agree to resolve it in California courts using California law, Dublin, Ireland courts using Irish law, or as otherwise provided in this section. If you live in the Designated Countries, the laws of Ireland govern all claims related to LinkedIn's provision of the Services, but this shall not deprive you of the mandatory consumer protections under the law of the country to which we direct your Services where you have habitual residence. With respect to jurisdiction, you and LinkedIn agree to choose the courts of the country to which we direct your Services where you have habitual residence for all disputes arising out of or relating to this User Agreement, or in the alternative, you may choose the responsible court in Ireland. If you are a business user within the scope of Article 6(12) of the EU Digital Markets Act (“DMA”) and have a dispute arising out of or in connection with Article 6(12) of the DMA, you may also utilize the alternative dispute resolution mechanism available in the Help Center . For others outside of Designated Countries, including those who live outside of the United States: You and LinkedIn agree that the laws of the State of California, U.S.A., excluding its conflict of laws rules, shall exclusively govern any dispute relating to this Contract and/or the Services. You and LinkedIn both agree that all claims and disputes can be litigated only in the federal or state courts in Santa Clara County, California, USA, and you and LinkedIn each agree to personal jurisdiction in those courts. You may have additional rights of redress and appeal for some decisions made by LinkedIn that impact you. 7. General Terms Here are some important details about the Contract. If a court with authority over this Contract finds any part of it unenforceable, you and we agree that the court should modify the terms to make that part enforceable while still achieving its intent. If the court cannot do that, you and we agree to ask the court to remove that unenforceable part and still enforce the rest of this Contract. This Contract (including additional terms that may be provided by us when you engage with a feature of the Services) is the only agreement between us regarding the Services and supersedes all prior agreements for the Services. If we don't act to enforce a breach of this Contract, that does not mean that LinkedIn has waived its right to enforce this Contract. You may not assign or transfer this Contract (or your membership or use of Services) to anyone without our consent. However, you agree that LinkedIn may assign this Contract to its affiliates or a party that buys it without your consent. There are no third-party beneficiaries to this Contract. You agree that the only way to provide us legal notice is at the addresses provided in Section 10. 8. LinkedIn “Dos and Don’ts” LinkedIn is a community of professionals. This list of “Dos and Don’ts” along with our Professional Community Policies limits what you can and cannot do on our Services, unless otherwise explicitly permitted by LinkedIn in a separate writing (e.g., through a research agreement). 8.1. Dos You agree that you will: Comply with all applicable laws, including, without limitation, privacy laws, intellectual property laws, anti-spam laws, export control laws, laws governing the content shared, and other applicable laws and regulatory requirements; Provide accurate contact and identity information to us and keep it updated; Use your real name on your profile; and Use the Services in a professional manner. 8.2. Don’ts You agree that you will  not : Create a false identity on LinkedIn, misrepresent your identity, create a Member profile for anyone other than yourself (a real person), or use or attempt to use another’s account (such as sharing log-in credentials or copying cookies); Develop, support or use software, devices, scripts, robots or any other means or processes (such as crawlers, browser plugins and add-ons or any other technology) to scrape or copy the Services, including profiles and other data from the Services; Override any security feature or bypass or circumvent any access controls or use limits of the Services (such as search results, profiles, or videos); Copy, use, display or distribute any information (including content) obtained from the Services, whether directly or through third parties (such as search tools or data aggregators or brokers), without the consent of the content owner (such as LinkedIn for content it owns); Disclose information that you do not have the consent to disclose (such as confidential information of others (including your employer); Violate the intellectual property rights of others, including copyrights, patents, trademarks, trade secrets or other proprietary rights. For example, do not copy or distribute (except through the available sharing functionality) the posts or other content of others without their permission, which they may give by posting under a Creative Commons license; Violate the intellectual property or other rights of LinkedIn, including, without limitation, (i) copying or distributing our learning videos or other materials, (ii) copying or distributing our technology, unless it is released under open source licenses; or (iii) using the word “LinkedIn” or our logos in any business name, email, or URL except as provided in the Brand Guidelines ; Post (or otherwise share) anything that contains software viruses, worms, or any other harmful code; Reverse engineer, decompile, disassemble, decipher or otherwise attempt to derive the source code for the Services or any related technology that is not open source; Imply or state that you are affiliated with or endorsed by LinkedIn without our express consent (e.g., representing yourself as an accredited LinkedIn trainer); Rent, lease, loan, trade, sell/re-sell or otherwise monetize the Services or related data or access to the same, without LinkedIn’s consent; Deep-link to our Services for any purpose other than to promote your profile or a Group on our Services, without LinkedIn’s consent; Use bots or other unauthorized automated methods to access the Services, add or download contacts, send or redirect messages, create, comment on, like, share, or re-share posts, or otherwise drive inauthentic engagement; Engage in “framing”, “mirroring”, or otherwise simulating the appearance or function of the Services; Overlay or otherwise modify the Services or their appearance (such as by inserting elements into the Services or removing, covering, or obscuring an advertisement included on the Services); Interfere with the operation of, or place an unreasonable load on, the Services (e.g., spam, denial of service attack, viruses, manipulating algorithms); Violate the Professional Community Policies , certain third party terms where applicable, or any additional terms concerning a specific Service that are provided when you sign up for or start using such Service; Use our Services to do anything that is unlawful, misleading, discriminatory, fraudulent or deceitful (e.g. manipulated media that wrongfully depicts a person saying or doing something they did not say or do); and/or Misuse our reporting or appeals process, including by submitting duplicative, fraudulent or unfounded reports, complaints or appeals. 9. Complaints Regarding Content Contact information for complaints about content provided by our Members. We ask that you report content and other information that you believe violates your rights (including intellectual property rights), our Professional Community Policies or otherwise violates this Contract or the law. To the extent we can under law, we may remove or restrict access to content, features, services, or information, including if we believe that it’s reasonably necessary to avoid harm to LinkedIn or others, violates the law or is reasonably necessary to prevent misuse of our Services. We reserve the right to take action against serious violations of this Contract, including by implementing account restrictions for significant violations. We respect the intellectual property rights of others. We require that information shared by Members be accurate and not in violation of the intellectual property rights or other rights of third parties. We provide a policy and process for complaints concerning content shared, and/or trademarks used, by our Members. 10. How To Contact Us Our Contact information. Our Help Center also provides information about our Services. For general inquiries, you may contact us  online . For legal notices or service of process, you may write us at these  addresses . LinkedIn © 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://ko-kr.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT1SQIGYY04yy1FKKKyuAago8XGF1-hC2yYYwZv_KmH6gDcED5TkKII5A37BBRgMvdOv2Awgj_UhEOqOQbxbADEnyJXVzJ5EaRw_N3czZ0Xs6f_goI0HdfyvzNm6t0KHYOCz_8RzMbhvNZwA
Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026
2026-01-13T09:30:14
https://www.linkedin.com/legal/user-agreement?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fposts%2Fndc-conferences_check-out-nick-chapsas-workshop-building-activity-7416435226064744449-suZ8&trk=registration-frontend_join-form-user-agreement
User Agreement | LinkedIn Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Effective on November 3, 2025 Our mission is to connect the world’s professionals to allow them to be more productive and successful. Our services are designed to promote economic opportunity for our members by enabling you and millions of other professionals to meet, exchange ideas, learn, and find opportunities or employees, work, and make decisions in a network of trusted relationships. Table of Contents: Introduction Obligations Rights and Limits Disclaimer and Limit of Liability Termination Governing Law and Dispute Resolution General Terms LinkedIn “Dos and Don’ts” Complaints Regarding Content How To Contact Us Introduction 1.1 Contract When you use our Services you agree to all of these terms. Your use of our Services is also subject to our Cookie Policy and our Privacy Policy, which covers how we collect, use, share, and store your personal information. By creating a LinkedIn account or accessing or using our Services (described below), you are agreeing to enter into a legally binding contract with LinkedIn (even if you are using third party credentials or using our Services on behalf of a company). If you do not agree to this contract (“Contract” or “User Agreement”), do not create an account or access or otherwise use any of our Services. If you wish to terminate this Contract at any time, you can do so by closing your account and no longer accessing or using our Services. As a Visitor or Member of our Services, the collection, use, and sharing of your personal data is subject to our Privacy Policy , our Cookie Policy and other documents referenced in our Privacy Policy , and updates. You acknowledge and have read our Privacy Policy . Services This Contract applies to LinkedIn.com, LinkedIn-branded apps, and other LinkedIn-related sites, apps, communications, and other services that state that they are offered under this Contract (“Services”), including the offsite collection of data for those Services, such as via our ads and the “Apply with LinkedIn” and “Share with LinkedIn” plugins. LinkedIn and other Key Terms You are entering into this Contract with LinkedIn (also referred to as “we” and “us”). Designated Countries . We use the term “Designated Countries” to refer to countries in the European Union (EU), European Economic Area (EEA), and Switzerland. If you reside in the “Designated Countries”, you are entering into this Contract with LinkedIn Ireland Unlimited Company (“LinkedIn Ireland”) and LinkedIn Ireland will be the controller of your personal data provided to, or collected by or for, or processed in connection with our Services. If you reside outside of the “Designated Countries”, you are entering into this Contract with LinkedIn Corporation (“LinkedIn Corp.”) and LinkedIn Corp. will be the controller of (or business responsible for) your personal data provided to, or collected by or for, or processed in connection with our Services. Affiliates . Affiliates are companies controlling, controlled by or under common control with us, including, for example, LinkedIn Ireland, LinkedIn Corporation, LinkedIn Singapore and Microsoft Corporation or any of its subsidiaries (e.g., Github, Inc.). Social Action . Actions that members take on our services such as likes, comments, follows, sharing content. Content . Content includes, for example, feed posts, feedback, comments, profiles, articles (and contributions), group posts, job postings, messages (including InMails), videos, photos, audio, and/or PDFs. 1.2 Members and Visitors This Contract applies to Members and Visitors. When you register and join the LinkedIn Services, you become a “Member”. If you have chosen not to register for our Services, you may access certain features as a “Visitor.” 1.3 Changes We may make changes to this Contract. We may modify this Contract, our Privacy Policy and our Cookie Policy from time to time. If we materially change these terms or if we are legally required to provide notice, we will provide you notice through our Services, or by other means, to provide you the opportunity to review the changes before they become effective. However, we may not always provide prior notice of changes to these terms (1) when those changes are legally required to be implemented with immediate effect, or (2) when those changes relate to a newly launched service or feature. We agree that changes cannot be retroactive. If you object to any of these changes, you may close your account . Your continued use of our Services after we publish or send a notice about our changes to these terms means that you are consenting to the updated terms as of their effective date. 2. Obligations 2.1 Service Eligibility Here are some promises that you make to us in this Contract: You’re eligible to enter into this Contract and you are at least our “Minimum Age.” The Services are not for use by anyone under the age of 16. To use the Services, you agree that: (1) you must be the "Minimum Age" (described below) or older; (2) you will only have one LinkedIn account, which must be in your real name; and (3) you are not already restricted by LinkedIn from using the Services. Creating an account with false information is a violation of our terms, including accounts registered on behalf of others or persons under the age of 16. “Minimum Age” means 16 years old. However, if law requires that you must be older in order for LinkedIn to lawfully provide the Services to you without parental consent (including using your personal data) then the Minimum Age is such older age. Learn More 2.2 Your Account You will keep your password a secret You will not share your account with anyone else and will follow our policies and the law. Members are account holders. You agree to: (1) protect against wrongful access to your account (e.g., use a strong password and keep it confidential); (2) not share or transfer your account or any part of it (e.g., sell or transfer the personal data of others by transferring your connections); and (3) follow the law, our list of Dos and Don’ts (below), and our Professional Community Policies . Learn More You are responsible for anything that happens through your account unless you close it or report misuse. As between you and others (including your employer), your account belongs to you. However, if the Services were purchased by another party for you to use in connection with your work for them (e.g., Recruiter seat or LinkedIn Learning subscription bought by your employer), the party paying for such Service has the right to control access to and get reports on your use of such paid Service; however, they do not have rights to your personal account. 2.3 Payment You’ll honor your payment obligations and you are okay with us storing your payment information. You understand that there may be fees and taxes that are added to our prices. Refunds are subject to our policy, and we may modify our prices and those modified prices will apply prospectively. If you buy any of our paid Services, you agree to pay us the applicable fees and taxes and you agree to the additional terms specific to the paid Services. Failure to pay these fees will result in the termination of your paid Services. Also, you agree that: Your purchase may be subject to foreign exchange fees or differences in prices based on location (e.g., exchange rates). We may store and continue billing your payment method (e.g., credit card), even after it has expired, to avoid interruptions in your paid Services and to use it to pay for other Services you may buy. If your primary payment method fails, we may automatically charge a secondary payment method, if you have provided one. You may update or change your payment method. Learn more If you purchase a subscription, your payment method automatically will be charged at the start of each subscription period for the fees and taxes applicable to that period. To avoid future charges, cancel before the renewal date. Learn how to cancel or suspend your paid subscription Services. We may modify our prices effective prospectively upon reasonable notice to the extent allowed under the law. All of your paid Services are subject to LinkedIn’s refund policy . We may calculate taxes payable by you based on the billing information that you provide us. You can get a copy of your invoice through your LinkedIn account settings under “ Purchase History ”. 2.4 Notices and Messages You’re okay with us providing notices and messages to you through our websites, apps, and contact information. If your contact information is out of date, you may miss out on important notices. You agree that we will provide notices and messages to you in the following ways: (1) within the Services or (2) sent to the contact information you provided us (e.g., email, mobile number, physical address). You agree to keep your contact information up to date. Please review your settings to control and limit the types of messages you receive from us. 2.5 Sharing When you share information on our Services, others can see, copy and use that information. Our Services allow sharing of information (including content) in many ways, such as through your profile, posts, articles, group posts, links to news articles, job postings, messages, and InMails. Depending on the feature and choices you make, information that you share may be seen by other Members, Visitors, or others (on or off of the Services). Where we have made settings available, we will honor the choices you make about who can see content or other information (e.g., message content to your addressees, sharing content only to LinkedIn connections, restricting your profile visibility from search tools, or opting not to notify others of your LinkedIn profile update). For job searching activities, we default to not notifying your connections or the public. So, if you apply for a job through our Services or opt to signal that you are interested in a job, our default is to share it only with the job poster. To the extent that laws allow this, we are not obligated to publish any content or other information on our Services and can remove it with or without notice. 3. Rights and Limits 3.1. Your License to LinkedIn You own all of your original content that you provide to us, but you also grant us a non-exclusive license to it. We’ll honor the choices you make about who gets to see your content, including how it can be used for ads. As between you and LinkedIn, you own your original content that you submit or post to the Services.  You grant LinkedIn and our Affiliates the following non-exclusive license to the content and other information you provide (e.g., share, post, upload, and/or otherwise submit) to our Services: A worldwide, transferable and sublicensable right to use, copy, modify, distribute, publicly perform and display, host, and process your content and other information without any further consent, notice and/or compensation to you or others. These rights are limited in the following ways: You can end this license for specific content by deleting such content from the Services, or generally by closing your account, except (a) to the extent you (1) shared it with others as part of the Services and they copied, re-shared it or stored it, (2) we had already sublicensed others prior to your content removal or closing of your account, or (3) we are required by law to retain or share it with others, and (b) for the reasonable time it takes to remove the content you delete from backup and other systems. We will not include your content in advertisements for the products and services of third parties to others without your separate consent (including sponsored content). However, without compensation to you or others, ads may be served near your content and other information, and your social actions may be visible and included with ads, as noted in the Privacy Policy. If you use a Service feature, we may mention that with your name or photo to promote that feature within our Services, subject to your settings. We will honor the audience choices for shared content (e.g., “Connections only”). For example, if you choose to share your post to "Anyone on or off LinkedIn” (or similar): (a) we may make it available off LinkedIn; (b) we may enable others to publicly share onto third-party services (e.g., a Member embedding your post on a third party service); and/or (c) we may enable search tools to make that public content findable though their services. Learn More While we may edit and make format changes to your content (such as translating or transcribing it, modifying the size, layout or file type, and removing or adding labels or metadata), we will take steps to avoid materially modifying the meaning of your expression in content you share with others.  Because you own your original content and we only have non-exclusive rights to it, you may choose to make it available to others, including under the terms of a Creative Commons license . You and LinkedIn agree that if content includes personal data, it is subject to our Privacy Policy. You and LinkedIn agree that we may access, store, process, and use any information (including content and/or personal data) that you provide in accordance with the terms of the Privacy Policy and your choices (including settings). By submitting suggestions or other feedback regarding our Services to LinkedIn, you agree that LinkedIn can use and share (but does not have to) such feedback for any purpose without compensation to you. You promise to only provide content and other information that you have the right to share and that your LinkedIn profile will be truthful. You agree to only provide content and other information that does not violate the law or anyone’s rights (including intellectual property rights). You have choices about how much information to provide on your profile but also agree that the profile information you provide will be truthful. LinkedIn may be required by law to remove certain content and other information in certain countries. 3.2 Service Availability We may change or limit the availability of some features, or end any Service. We may change, suspend or discontinue any of our Services. We may also limit the availability of features, content and other information so that they are not available to all Visitors or Members (e.g., by country or by subscription access). We don’t promise to store or show (or keep showing) any information (including content) that you’ve shared. LinkedIn is not a storage service. You agree that we have no obligation to store, maintain or provide you a copy of any content or other information that you or others provide, except to the extent required by applicable law and as noted in our Privacy Policy. 3.3 Other Content, Sites and Apps Your use of others’ content and information posted on our Services, is at your own risk. Others may offer their own products and services through our Services, and we aren’t responsible for those third-party activities. Others’ Content: By using the Services, you may encounter content or other information that might be inaccurate, incomplete, delayed, misleading, illegal, offensive, or otherwise harmful. You agree that we are not responsible for content or other information made available through or within the Services by others, including Members. While we apply automated tools to review much of the content and other information presented in the Services, we cannot always prevent misuse of our Services, and you agree that we are not responsible for any such misuse. You also acknowledge the risk that others may share inaccurate or misleading information about you or your organization, and that you or your organization may be mistakenly associated with content about others, for example, when we let connections and followers know you or your organization were mentioned in the news. Members have choices about this feature . Others’ Products and Services: LinkedIn may help connect you to other Members (e.g., Members using Services Marketplace or our enterprise recruiting, jobs, sales, or marketing products) who offer you opportunities (on behalf of themselves, their organizations, or others) such as offers to become a candidate for employment or other work or offers to purchase products or services. You acknowledge that LinkedIn does not perform these offered services, employ those who perform these services, or provide these offered products.  You further acknowledge that LinkedIn does not supervise, direct, control, or monitor Members in the making of these offers, or in their providing you with work, delivering products or performing services, and you agree that (1) LinkedIn is not responsible for these offers, or performance or procurement of them, (2) LinkedIn does not endorse any particular Member’s offers, and (3) LinkedIn is not an agent or employment agency on behalf of any Member offering employment or other work, products or services. With respect to employment or other work, LinkedIn does not make employment or hiring decisions on behalf of Members offering opportunities and does not have such authority from Members or organizations using our products.  For Services Marketplace , (a) you must be at least 18 years of age to procure, offer, or perform services, and (b) you represent and warrant that you have all the required licenses and will provide services consistent with the relevant industry standards and our Professional Community Policies .  Others’ Events: Similarly, LinkedIn may help you register for and/or attend events organized by Members and connect with other Members who are attendees at such events. You agree that (1) LinkedIn is not responsible for the conduct of any of the Members or other attendees at such events, (2) LinkedIn does not endorse any particular event listed on our Services, (3) LinkedIn does not review and/or vet any of these events or speakers, and (4) you will adhere to the terms and conditions that apply to such events. 3.4 Limits We have the right to limit how you connect and interact on our Services. LinkedIn reserves the right to limit your use of the Services, including the number of your connections and your ability to contact other Members. LinkedIn reserves the right to restrict, suspend, or terminate your account if you breach this Contract or the law or are misusing the Services (e.g., violating any of the Dos and Don’ts or Professional Community Policies ). We can also remove any content or other information you shared if we believe it violates our Professional Community Policies or Dos and Don’ts or otherwise violates this Contract. Learn more about how we moderate content. 3.5 Intellectual Property Rights We’re providing you notice about our intellectual property rights. LinkedIn reserves all of its intellectual property rights in the Services. Trademarks and logos used in connection with the Services are the trademarks of their respective owners. LinkedIn, and “in” logos and other LinkedIn trademarks, service marks, graphics and logos used for our Services are trademarks or registered trademarks of LinkedIn. 3.6 Recommendations and Automated Processing We use data and other information about you to make and order relevant suggestions and to generate content for you and others. Recommendations: We use the data and other information that you provide and that we have about Members and content on the Services to make recommendations for connections, content, ads, and features that may be useful to you. We use that data and other information to recommend and to present information to you in an order that may be more relevant for you. For example, that data and information may be used to recommend jobs to you and you to recruiters and to organize content in your feed in order to optimize your experience and use of the Services. Keeping your profile accurate and up to date helps us to make these recommendations more accurate and relevant. Learn More   Generative AI Features: By using the Services, you may interact with features we offer that automate content generation for you. The content that is generated might be inaccurate, incomplete, delayed, misleading or not suitable for your purposes. Please review and edit such content before sharing with others. Like all content you share on our Services, you are responsible for ensuring it complies with our Professional Community Policies , including not sharing misleading information. The Services may include content automatically generated and shared using tools offered by LinkedIn or others off LinkedIn. Like all content and other information on our Services, regardless of whether it's labeled as created by “AI”, be sure to carefully review before relying on it. 4. Disclaimer and Limit of Liability 4.1 No Warranty This is our disclaimer of legal liability for the quality, safety, or reliability of our Services. LINKEDIN AND ITS AFFILIATES MAKE NO REPRESENTATION OR WARRANTY ABOUT THE SERVICES, INCLUDING ANY REPRESENTATION THAT THE SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, AND PROVIDE THE SERVICES (INCLUDING CONTENT, OUTPUT AND INFORMATION) ON AN “AS IS” AND “AS AVAILABLE” BASIS. TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, LINKEDIN AND ITS AFFILIATES DISCLAIM ANY IMPLIED OR STATUTORY WARRANTY, INCLUDING ANY IMPLIED WARRANTY OF TITLE, ACCURACY, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. If you plan to use content, output and information for any reason, it is your responsibility to verify its accuracy and fitness for your purposes, because any content, output and information on the service may not reflect accurate, complete, or current information. 4.2 Exclusion of Liability These are the limits of legal liability we may have to you. TO THE FULLEST EXTENT PERMITTED BY LAW (AND UNLESS LINKEDIN HAS ENTERED INTO A SEPARATE WRITTEN AGREEMENT THAT OVERRIDES THIS CONTRACT), LINKEDIN AND ITS AFFILIATES, WILL NOT BE LIABLE IN CONNECTION WITH THIS CONTRACT FOR LOST PROFITS OR LOST BUSINESS OPPORTUNITIES, REPUTATION (E.G., OFFENSIVE OR DEFAMATORY STATEMENTS), LOSS OF DATA (E.G., DOWN TIME OR LOSS, USE OF, OR CHANGES TO, YOUR INFORMATION OR CONTENT) OR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES. LINKEDIN AND ITS AFFILIATES WILL NOT BE LIABLE TO YOU IN CONNECTION WITH THIS CONTRACT FOR ANY AMOUNT THAT EXCEEDS (A) THE TOTAL FEES PAID OR PAYABLE BY YOU TO LINKEDIN FOR THE SERVICES DURING THE TERM OF THIS CONTRACT, IF ANY, OR (B) US $1000. 4.3 Basis of the Bargain; Exclusions The limitations of liability in this Section 4 are part of the basis of the bargain between you and LinkedIn and shall apply to all claims of liability (e.g., warranty, tort, negligence, contract and law) even if LinkedIn or its affiliates has been told of the possibility of any such damage, and even if these remedies fail their essential purpose. THESE LIMITATIONS OF LIABILITY DO NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY OR FOR FRAUD, GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, OR IN CASES OF NEGLIGENCE, WHERE A MATERIAL OBLIGATION HAS BEEN BREACHED. A MATERIAL OBLIGATION BEING AN OBLIGATION WHICH FORMS A PREREQUISITE TO OUR DELIVERY OF SERVICES AND ON WHICH YOU MAY REASONABLY RELY, BUT ONLY TO THE EXTENT THAT THE DAMAGES WERE DIRECTLY CAUSED BY THE BREACH AND WERE FORESEEABLE UPON CONCLUSION OF THIS CONTRACT AND TO THE EXTENT THAT THEY ARE TYPICAL IN THE CONTEXT OF THIS CONTRACT. 5. Termination We can each end this Contract, but some rights and obligations survive. Both you and LinkedIn may terminate this Contract at any time with notice to the other. On termination, you lose the right to access or use the Services. The following shall survive termination: Our rights to use and disclose your feedback; Section 3 (subject to 3.1.1); Sections 4, 6, 7, and 8.2 of this Contract; and Any amounts owed by either party prior to termination remain owed after termination. You can visit our Help Center to learn about how to close your account 6. Governing Law and Dispute Resolution In the unlikely event we end up in a legal dispute, depending on where you live, you and LinkedIn agree to resolve it in California courts using California law, Dublin, Ireland courts using Irish law, or as otherwise provided in this section. If you live in the Designated Countries, the laws of Ireland govern all claims related to LinkedIn's provision of the Services, but this shall not deprive you of the mandatory consumer protections under the law of the country to which we direct your Services where you have habitual residence. With respect to jurisdiction, you and LinkedIn agree to choose the courts of the country to which we direct your Services where you have habitual residence for all disputes arising out of or relating to this User Agreement, or in the alternative, you may choose the responsible court in Ireland. If you are a business user within the scope of Article 6(12) of the EU Digital Markets Act (“DMA”) and have a dispute arising out of or in connection with Article 6(12) of the DMA, you may also utilize the alternative dispute resolution mechanism available in the Help Center . For others outside of Designated Countries, including those who live outside of the United States: You and LinkedIn agree that the laws of the State of California, U.S.A., excluding its conflict of laws rules, shall exclusively govern any dispute relating to this Contract and/or the Services. You and LinkedIn both agree that all claims and disputes can be litigated only in the federal or state courts in Santa Clara County, California, USA, and you and LinkedIn each agree to personal jurisdiction in those courts. You may have additional rights of redress and appeal for some decisions made by LinkedIn that impact you. 7. General Terms Here are some important details about the Contract. If a court with authority over this Contract finds any part of it unenforceable, you and we agree that the court should modify the terms to make that part enforceable while still achieving its intent. If the court cannot do that, you and we agree to ask the court to remove that unenforceable part and still enforce the rest of this Contract. This Contract (including additional terms that may be provided by us when you engage with a feature of the Services) is the only agreement between us regarding the Services and supersedes all prior agreements for the Services. If we don't act to enforce a breach of this Contract, that does not mean that LinkedIn has waived its right to enforce this Contract. You may not assign or transfer this Contract (or your membership or use of Services) to anyone without our consent. However, you agree that LinkedIn may assign this Contract to its affiliates or a party that buys it without your consent. There are no third-party beneficiaries to this Contract. You agree that the only way to provide us legal notice is at the addresses provided in Section 10. 8. LinkedIn “Dos and Don’ts” LinkedIn is a community of professionals. This list of “Dos and Don’ts” along with our Professional Community Policies limits what you can and cannot do on our Services, unless otherwise explicitly permitted by LinkedIn in a separate writing (e.g., through a research agreement). 8.1. Dos You agree that you will: Comply with all applicable laws, including, without limitation, privacy laws, intellectual property laws, anti-spam laws, export control laws, laws governing the content shared, and other applicable laws and regulatory requirements; Provide accurate contact and identity information to us and keep it updated; Use your real name on your profile; and Use the Services in a professional manner. 8.2. Don’ts You agree that you will  not : Create a false identity on LinkedIn, misrepresent your identity, create a Member profile for anyone other than yourself (a real person), or use or attempt to use another’s account (such as sharing log-in credentials or copying cookies); Develop, support or use software, devices, scripts, robots or any other means or processes (such as crawlers, browser plugins and add-ons or any other technology) to scrape or copy the Services, including profiles and other data from the Services; Override any security feature or bypass or circumvent any access controls or use limits of the Services (such as search results, profiles, or videos); Copy, use, display or distribute any information (including content) obtained from the Services, whether directly or through third parties (such as search tools or data aggregators or brokers), without the consent of the content owner (such as LinkedIn for content it owns); Disclose information that you do not have the consent to disclose (such as confidential information of others (including your employer); Violate the intellectual property rights of others, including copyrights, patents, trademarks, trade secrets or other proprietary rights. For example, do not copy or distribute (except through the available sharing functionality) the posts or other content of others without their permission, which they may give by posting under a Creative Commons license; Violate the intellectual property or other rights of LinkedIn, including, without limitation, (i) copying or distributing our learning videos or other materials, (ii) copying or distributing our technology, unless it is released under open source licenses; or (iii) using the word “LinkedIn” or our logos in any business name, email, or URL except as provided in the Brand Guidelines ; Post (or otherwise share) anything that contains software viruses, worms, or any other harmful code; Reverse engineer, decompile, disassemble, decipher or otherwise attempt to derive the source code for the Services or any related technology that is not open source; Imply or state that you are affiliated with or endorsed by LinkedIn without our express consent (e.g., representing yourself as an accredited LinkedIn trainer); Rent, lease, loan, trade, sell/re-sell or otherwise monetize the Services or related data or access to the same, without LinkedIn’s consent; Deep-link to our Services for any purpose other than to promote your profile or a Group on our Services, without LinkedIn’s consent; Use bots or other unauthorized automated methods to access the Services, add or download contacts, send or redirect messages, create, comment on, like, share, or re-share posts, or otherwise drive inauthentic engagement; Engage in “framing”, “mirroring”, or otherwise simulating the appearance or function of the Services; Overlay or otherwise modify the Services or their appearance (such as by inserting elements into the Services or removing, covering, or obscuring an advertisement included on the Services); Interfere with the operation of, or place an unreasonable load on, the Services (e.g., spam, denial of service attack, viruses, manipulating algorithms); Violate the Professional Community Policies , certain third party terms where applicable, or any additional terms concerning a specific Service that are provided when you sign up for or start using such Service; Use our Services to do anything that is unlawful, misleading, discriminatory, fraudulent or deceitful (e.g. manipulated media that wrongfully depicts a person saying or doing something they did not say or do); and/or Misuse our reporting or appeals process, including by submitting duplicative, fraudulent or unfounded reports, complaints or appeals. 9. Complaints Regarding Content Contact information for complaints about content provided by our Members. We ask that you report content and other information that you believe violates your rights (including intellectual property rights), our Professional Community Policies or otherwise violates this Contract or the law. To the extent we can under law, we may remove or restrict access to content, features, services, or information, including if we believe that it’s reasonably necessary to avoid harm to LinkedIn or others, violates the law or is reasonably necessary to prevent misuse of our Services. We reserve the right to take action against serious violations of this Contract, including by implementing account restrictions for significant violations. We respect the intellectual property rights of others. We require that information shared by Members be accurate and not in violation of the intellectual property rights or other rights of third parties. We provide a policy and process for complaints concerning content shared, and/or trademarks used, by our Members. 10. How To Contact Us Our Contact information. Our Help Center also provides information about our Services. For general inquiries, you may contact us  online . For legal notices or service of process, you may write us at these  addresses . LinkedIn © 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://www.linkedin.com/checkpoint/rp/request-password-reset?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fsearch%2Fresults%2Fpeople%2F%3FfacetCurrentCompany%3D%255B10446421%255D&trk=cold_join_sign_in
Reset Password | LinkedIn Sign in Join now Forgot password We’ll send a verification code to this email or phone number if it matches an existing LinkedIn account. Email or Phone We don’t recognize that email. Did you mean {:emailSuggestion} ? We’ll send a verification code to this email or phone number if it matches an existing LinkedIn account. Next or Back LinkedIn © 2026 User Agreement Privacy Policy Community Guidelines Cookie Policy Copyright Policy Send Feedback Language العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional))
2026-01-13T09:30:14
https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.instagram.com%2F&h=AT33ZD9slCXljQkXJ-lSNvSC8_0Xv4--1L6RTGboMh7V8sT61MtLME4vmc47PKVMx5sS0qsngyFJkVtN7KxlAWLdZ76Q8Dom3JTn-mwMfVykAtCLsWeICXjvEBTzIMBgmQuzbSaismBWP-yP
Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026
2026-01-13T09:30:14
https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.instagram.com%2F&h=AT1aoXkmuEL-XrJ4EEEJmtMfCx-54XfhEgTMbn_3ptUv8LbQ5Yb3fl3Xhx-q9sqSna9n0U54w-wqrqFk8m2mQgChAqMzdVAynVb368MeLt70XZr7EaD929Bb9PAM7HWPW7oPrVqed1EmyC8W
Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026
2026-01-13T09:30:14
https://www.linkedin.com/legal/cookie-policy?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Ffeed%2Fhashtag%2Fmcp&trk=registration-frontend_join-form-cookie-policy
Cookie Policy | LinkedIn Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws Cookie Policy Effective on June 3, 2022 At LinkedIn, we believe in being clear and open about how we collect and use data related to you. This Cookie Policy applies to any LinkedIn product or service that links to this policy or incorporates it by reference. We use cookies and similar technologies such as pixels, local storage and mobile ad IDs (collectively referred to in this policy as “cookies”) to collect and use data as part of our Services, as defined in our Privacy Policy (“Services”) and which includes our sites, communications, mobile applications and off-site Services, such as our ad services and the “Apply with LinkedIn” and “Share with LinkedIn” plugins or tags. In the spirit of transparency, this policy provides detailed information about how and when we use these technologies.  By continuing to visit or use our Services, you are agreeing to the use of cookies and similar technologies for the purposes described in this policy. What technologies are used? ENTER A SUMMARY Type of technology Description Cookies A cookie is a small file placed onto your device that enables LinkedIn features and functionality. Any browser visiting our sites may receive cookies from us or cookies from third parties such as our customers, partners or service providers. We or third parties may also place cookies in your browser when you visit non-LinkedIn sites that display ads or that host our plugins or tags .   We use two types of cookies: persistent cookies and session cookies. A persistent cookie lasts beyond the current session and is used for many purposes, such as recognizing you as an existing user, so it’s easier to return to LinkedIn and interact with our Services without signing in again. Since a persistent cookie stays in your browser, it will be read by LinkedIn when you return to one of our sites or visit a third party site that uses our Services. Session cookies last only as long as the session (usually the current visit to a website or a browser session). Pixels A pixel is a tiny image that may be embedded within web pages and emails, requiring a call (which provides device and visit information) to our servers in order for the pixel to be rendered in those web pages and emails. We use pixels to learn more about your interactions with email content or web content, such as whether you interacted with ads or posts. Pixels can also enable us and third parties to place cookies on your browser. Local storage Local storage enables a website or application to store information locally on your device(s). Local storage may be used to improve the LinkedIn experience, for example, by enabling features, remembering your preferences and speeding up site functionality. Other similar technologies We also use other tracking technologies, such as mobile advertising IDs and tags for similar purposes as described in this Cookie Policy. References to similar technologies in this policy includes pixels, local storage, and other tracking technologies. Our cookie tables lists cookies and similar technologies that are used as part of our Services. Please note that the names of cookies and similar technologies may change over time. What are these technologies used for? Below we describe the purposes for which we use these technologies. ENTER SUMMARY Purpose Description Authentication We use cookies and similar technologies to recognize you when you visit our Services.   If you’re signed into LinkedIn, these technologies help us show you the right information and personalize your experience in line with your settings. For example, cookies enable LinkedIn to identify you and verify your account.   Security We use cookies and similar technologies to make your interactions with our Services faster and more secure.   For example, we use cookies to enable and support our security features, keep your account safe and to help us detect malicious activity and violations of our User Agreement.   Preferences, features and services We use cookies and similar technologies to enable the functionality of our Services, such as helping you to fill out forms on our Services more easily and providing you with features, insights and customized content in conjunction with our plugins. We also use these technologies to remember information about your browser and your preferences.   For example, cookies can tell us which language you prefer and what your communications preferences are. We may also use local storage to speed up site functionality.   Customized content We use cookies and similar technologies to customize your experience on our Services.   For example, we may use cookies to remember previous searches so that when you return to our services, we can offer additional information that relates to your previous search. Plugins on and off LinkedIn We use cookies and similar technologies to enable LinkedIn plugins both on and off the LinkedIn sites.   For example, our plugins, including the "Apply with LinkedIn" button or the "Share" button may be found on LinkedIn or third-party sites, such as the sites of our customers and partners. Our plugins use cookies and other technologies to provide analytics and recognize you on LinkedIn and third-party sites. If you interact with a plugin (for instance, by clicking "Apply"), the plugin will use cookies to identify you and initiate your request to apply.   You can learn more about plugins in our Privacy Policy .   Advertising Cookies and similar technologies help us show relevant advertising to you more effectively, both on and off our Services and to measure the performance of such ads. We use these technologies to learn whether content has been shown to you or whether someone who was presented with an ad later came back and took an action (e.g., downloaded a white paper or made a purchase) on another site. Similarly, our partners or service providers may use these technologies to determine whether we've shown an ad or a post and how it performed or provide us with information about how you interact with ads.   We may also work with our customers and partners to show you an ad on or off LinkedIn, such as after you’ve visited a customer’s or partner’s site or application. These technologies help us provide aggregated information to our customers and partners.   For further information regarding the use of cookies for advertising purposes, please see Sections 1.4 and 2.4 of the Privacy Policy .   As noted in Section 1.4 of our Privacy Policy, outside Designated Countries , we also collect (or rely on others who collect) information about your device where you have not engaged with our Services (e.g., ad ID, IP address, operating system and browser information) so we can provide our Members with relevant ads and better understand their effectiveness.   For further information, please see Section 1.4 of the Privacy Policy . Analytics and research Cookies and similar technologies help us learn more about how well our Services and plugins perform in different locations.   We or our service providers use these technologies to understand, improve, and research products, features and services, including as you navigate through our sites or when you access LinkedIn from other sites, applications or devices. We or our service providers, use these technologies to determine and measure the performance of ads or posts on and off LinkedIn and to learn whether you have interacted with our websites, content or emails and provide analytics based on those interactions.   We also use these technologies to provide aggregated information to our customers and partners as part of our Services.   If you are a LinkedIn member but logged out of your account on a browser, LinkedIn may still continue to log your interaction with our Services on that browser until the expiration of the cookie in order to generate usage analytics for our Services. We may share these analytics in aggregate form with our customers. What third parties use these technologies in connection with our Services? Third parties such as our customers, partners and service providers may use cookies in connection with our Services. For example, third parties may use cookies in their LinkedIn pages, job posts and their advertisements on and off LinkedIn for their own marketing purposes. For an illustration, please visit  LinkedIn’s Help Center . Third parties may also use cookies in connection with our off-site Services, such as LinkedIn ad services. Third parties may use cookies to help us to provide our Services. We may also work with third parties for our own marketing purposes and to enable us to analyze and research our Services. Your Choices You have choices on how LinkedIn uses cookies and similar technologies. Please note that if you limit the ability of LinkedIn to set cookies and similar technologies, you may worsen your overall user experience, since it may no longer be personalized to you. It may also stop you from saving customized settings like login information. Opt out of targeted advertising As described in Section 2.4 of the Privacy Policy , you have choices regarding the personalized ads you may see. LinkedIn Members can adjust their settings here . Visitor controls can be found here . Some mobile device operating systems such as Android provide the ability to control the use of mobile advertising IDs for ads personalization. You can learn how to use these controls by visiting the manufacturer’s website. We do not use iOS mobile advertising IDs for targeted advertising. Browser Controls Most browsers allow you to control cookies through their settings, which may be adapted to reflect your consent to the use of cookies. Further, most browsers also enable you to review and erase cookies, including LinkedIn cookies. To learn more about browser controls, please consult the documentation that your browser manufacturer provides. What is Do Not Track (DNT)? DNT is a concept that has been promoted by regulatory agencies such as the U.S. Federal Trade Commission (FTC), for the Internet industry to develop and implement a mechanism for allowing Internet users to control the tracking of their online activities across websites by using browser settings. As such, LinkedIn does not generally respond to “do not track” signals. Other helpful resources To learn more about advertisers’ use of cookies, please visit the following links: Internet Advertising Bureau (US) European Interactive Digital Advertising Alliance (EU) Internet Advertising Bureau (EU) LinkedIn © 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://developers.google.com/google-ads/api/docs/version-migration
Upgrade your API version &nbsp;|&nbsp; Google Ads API &nbsp;|&nbsp; Google for Developers Skip to main content Google Ads API / English Deutsch Español Français Indonesia Português – Brasil Русский 中文 – 简体 日本語 한국어 Sign in Guides Reference Libraries and samples Policies Support Google Ads API Guides Reference Libraries and samples Policies Support Upgrade your API version Deprecation and sunset Reporting reference v22 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Campaign Search Term View Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Content Suitability Placement View Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Final Url Expansion Asset View Gender View Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location Interest View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Targeting Expansion View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Goal Config Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Goal Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Goal Config Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Search Term View Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Content Suitability Placement View Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Final Url Expansion Asset View Gender View Geo Target Constant Geographic View Goal Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location Interest View Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Targeting Expansion View Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v21 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Campaign Search Term View Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Content Suitability Placement View Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Final Url Expansion Asset View Gender View Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location Interest View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Search Term View Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Content Suitability Placement View Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Final Url Expansion Asset View Gender View Geo Target Constant Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location Interest View Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v20 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Gender View Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Gender View Geo Target Constant Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v19 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Gender View Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Gender View Geo Target Constant Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator API reference v22 Overview v21 to v22 diff services AccountBudgetProposalService Overview MutateAccountBudgetProposal AccountLinkService Overview CreateAccountLink MutateAccountLink AdGroupAdLabelService Overview MutateAdGroupAdLabels AdGroupAdService Overview MutateAdGroupAds RemoveAutomaticallyCreatedAssets AdGroupAssetService Overview MutateAdGroupAssets AdGroupAssetSetService Overview MutateAdGroupAssetSets AdGroupBidModifierService Overview MutateAdGroupBidModifiers AdGroupCriterionCustomizerService Overview MutateAdGroupCriterionCustomizers AdGroupCriterionLabelService Overview MutateAdGroupCriterionLabels AdGroupCriterionService Overview MutateAdGroupCriteria AdGroupCustomizerService Overview MutateAdGroupCustomizers AdGroupLabelService Overview MutateAdGroupLabels AdGroupService Overview MutateAdGroups AdParameterService Overview MutateAdParameters AdService Overview MutateAds AssetGenerationService (closed beta) Overview GenerateImages (closed beta) GenerateText (closed beta) AssetGroupAssetService Overview MutateAssetGroupAssets AssetGroupListingGroupFilterService Overview MutateAssetGroupListingGroupFilters AssetGroupService Overview MutateAssetGroups AssetGroupSignalService Overview MutateAssetGroupSignals AssetService Overview MutateAssets AssetSetAssetService Overview MutateAssetSetAssets AssetSetService Overview MutateAssetSets AudienceInsightsService Overview GenerateAudienceCompositionInsights GenerateAudienceOverlapInsights GenerateInsightsFinderReport GenerateSuggestedTargetingInsights GenerateTargetingSuggestionMetrics ListAudienceInsightsAttributes ListInsightsEligibleDates AudienceService Overview MutateAudiences AutomaticallyCreatedAssetRemovalService Overview RemoveCampaignAutomaticallyCreatedAsset BatchJobService Overview AddBatchJobOperations ListBatchJobResults MutateBatchJob RunBatchJob BiddingDataExclusionService Overview MutateBiddingDataExclusions BiddingSeasonalityAdjustmentService Overview MutateBiddingSeasonalityAdjustments BiddingStrategyService Overview MutateBiddingStrategies BillingSetupService Overview MutateBillingSetup BrandSuggestionService Overview SuggestBrands CampaignAssetService Overview MutateCampaignAssets CampaignAssetSetService Overview MutateCampaignAssetSets CampaignBidModifierService Overview MutateCampaignBidModifiers CampaignBudgetService Overview MutateCampaignBudgets CampaignConversionGoalService Overview MutateCampaignConversionGoals CampaignCriterionService Overview MutateCampaignCriteria CampaignCustomizerService Overview MutateCampaignCustomizers CampaignDraftService Overview ListCampaignDraftAsyncErrors MutateCampaignDrafts PromoteCampaignDraft CampaignGoalConfigService Overview MutateCampaignGoalConfigs CampaignGroupService Overview MutateCampaignGroups CampaignLabelService Overview MutateCampaignLabels CampaignLifecycleGoalService Overview ConfigureCampaignLifecycleGoals CampaignService Overview EnablePMaxBrandGuidelines MutateCampaigns CampaignSharedSetService Overview MutateCampaignSharedSets ContentCreatorInsightsService Overview GenerateCreatorInsights GenerateTrendingInsights ConversionActionService Overview MutateConversionActions ConversionAdjustmentUploadService Overview UploadConversionAdjustments ConversionCustomVariableService Overview MutateConversionCustomVariables ConversionGoalCampaignConfigService Overview MutateConversionGoalCampaignConfigs ConversionUploadService Overview UploadCallConversions UploadClickConversions ConversionValueRuleService Overview MutateConversionValueRules ConversionValueRuleSetService Overview MutateConversionValueRuleSets CustomAudienceService Overview MutateCustomAudiences CustomConversionGoalService Overview MutateCustomConversionGoals CustomInterestService Overview MutateCustomInterests CustomerAssetService Overview MutateCustomerAssets CustomerAssetSetService Overview MutateCustomerAssetSets CustomerClientLinkService Overview MutateCustomerClientLink CustomerConversionGoalService Overview MutateCustomerConversionGoals CustomerCustomizerService Overview MutateCustomerCustomizers CustomerLabelService Overview MutateCustomerLabels CustomerLifecycleGoalService Overview ConfigureCustomerLifecycleGoals CustomerManagerLinkService Overview MoveManagerLink MutateCustomerManagerLink CustomerNegativeCriterionService Overview MutateCustomerNegativeCriteria CustomerService Overview CreateCustomerClient ListAccessibleCustomers MutateCustomer CustomerSkAdNetworkConversionValueSchemaService Overview MutateCustomerSkAdNetworkConversionValueSchema CustomerUserAccessInvitationService Overview MutateCustomerUserAccessInvitation CustomerUserAccessService Overview MutateCustomerUserAccess CustomizerAttributeService Overview MutateCustomizerAttributes DataLinkService Overview CreateDataLink RemoveDataLink UpdateDataLink ExperimentArmService Overview MutateExperimentArms ExperimentService Overview EndExperiment GraduateExperiment ListExperimentAsyncErrors MutateExperiments PromoteExperiment ScheduleExperiment GeoTargetConstantService Overview SuggestGeoTargetConstants GoalService Overview MutateGoals GoogleAdsFieldService Overview GetGoogleAdsField SearchGoogleAdsFields GoogleAdsService Overview Mutate Search SearchStream IdentityVerificationService Overview GetIdentityVerification StartIdentityVerification InvoiceService Overview ListInvoices KeywordPlanAdGroupKeywordService Overview MutateKeywordPlanAdGroupKeywords KeywordPlanAdGroupService Overview MutateKeywordPlanAdGroups KeywordPlanCampaignKeywordService Overview MutateKeywordPlanCampaignKeywords KeywordPlanCampaignService Overview MutateKeywordPlanCampaigns KeywordPlanIdeaService Overview GenerateAdGroupThemes GenerateKeywordForecastMetrics GenerateKeywordHistoricalMetrics GenerateKeywordIdeas KeywordPlanService Overview MutateKeywordPlans KeywordThemeConstantService Overview SuggestKeywordThemeConstants LabelService Overview MutateLabels LocalServicesLeadService Overview AppendLeadConversation ProvideLeadFeedback OfflineUserDataJobService Overview AddOfflineUserDataJobOperations CreateOfflineUserDataJob RunOfflineUserDataJob PaymentsAccountService Overview ListPaymentsAccounts ProductLinkInvitationService Overview CreateProductLinkInvitation RemoveProductLinkInvitation UpdateProductLinkInvitation ProductLinkService Overview CreateProductLink RemoveProductLink ReachPlanService Overview GenerateConversionRates GenerateReachForecast ListPlannableLocations ListPlannableProducts ListPlannableUserInterests ListPlannableUserLists RecommendationService Overview ApplyRecommendation DismissRecommendation GenerateRecommendations RecommendationSubscriptionService Overview MutateRecommendationSubscription RemarketingActionService Overview MutateRemarketingActions ShareablePreviewService Overview GenerateShareablePreviews SharedCriterionService Overview MutateSharedCriteria SharedSetService Overview MutateSharedSets SmartCampaignSettingService Overview GetSmartCampaignStatus MutateSmartCampaignSettings SmartCampaignSuggestService Overview SuggestKeywordThemes SuggestSmartCampaignAd SuggestSmartCampaignBudgetOptions ThirdPartyAppAnalyticsLinkService Overview RegenerateShareableLinkId TravelAssetSuggestionService Overview SuggestTravelAssets UserDataService Overview UploadUserData UserListCustomerTypeService Overview MutateUserListCustomerTypes UserListService Overview MutateUserLists common ActivityCityInfo ActivityCountryInfo ActivityIdInfo ActivityRatingInfo ActivityStateInfo AdAppDeepLinkAsset AdAssetPolicySummary AdCallToActionAsset AdDemandGenCarouselCardAsset AdImageAsset AdMediaBundleAsset AdScheduleInfo AdTextAsset AdVideoAsset AdVideoAssetInfo AdVideoAssetInventoryPreferences AdditionalApplicationInfo AddressInfo AgeDimension AgeRangeInfo AgeSegment AppAdInfo AppDeepLinkAsset AppEngagementAdInfo AppPaymentModelInfo AppPreRegistrationAdInfo AssetDisapproved AssetInteractionTarget AssetLinkPrimaryStatusDetails AssetUsage AudienceDimension AudienceExclusionDimension AudienceInfo AudienceInsightsAttribute AudienceInsightsAttributeMetadata AudienceInsightsAttributeMetadataGroup AudienceInsightsCategory AudienceInsightsEntity AudienceInsightsLineup AudienceSegment AudienceSegmentDimension BasicUserListInfo BookOnGoogleAsset BrandInfo BrandListInfo BudgetCampaignAssociationStatus BudgetSimulationPoint BudgetSimulationPointList BusinessMessageAsset BusinessMessageCallToActionInfo BusinessProfileBusinessNameFilter BusinessProfileLocation BusinessProfileLocationGroup BusinessProfileLocationSet CallAdInfo CallAsset CallFeedItem CallToActionAsset CalloutAsset CalloutFeedItem CampaignGoalSettings CampaignGoalSettings.CampaignRetentionGoalSettings CampaignThirdPartyBrandLiftIntegrationPartner CampaignThirdPartyBrandSafetyIntegrationPartner CampaignThirdPartyIntegrationPartners CampaignThirdPartyReachIntegrationPartner CampaignThirdPartyViewabilityIntegrationPartner CarrierInfo ChainFilter ChainLocationGroup ChainSet ClickLocation CombinedAudienceInfo Commission ConceptGroup Consent ContentLabelInfo CpcBidSimulationPoint CpcBidSimulationPointList CpvBidSimulationPoint CpvBidSimulationPointList CriterionCategoryAvailability CriterionCategoryChannelAvailability CriterionCategoryLocaleAvailability CrmBasedUserListInfo CustomAffinityInfo CustomAudienceInfo CustomAudienceSegment CustomIntentInfo CustomParameter CustomerLifecycleOptimizationValueSettings CustomerMatchUserListMetadata CustomerThirdPartyBrandLiftIntegrationPartner CustomerThirdPartyBrandSafetyIntegrationPartner CustomerThirdPartyIntegrationPartners CustomerThirdPartyReachIntegrationPartner CustomerThirdPartyViewabilityIntegrationPartner CustomizerValue DateRange DemandGenCarouselAdInfo DemandGenCarouselCardAsset DemandGenMultiAssetAdInfo DemandGenProductAdInfo DemandGenVideoResponsiveAdInfo DetailedDemographicSegment DeviceInfo DisplayUploadAdInfo DynamicBusinessProfileLocationGroupFilter DynamicCustomAsset DynamicEducationAsset DynamicFlightsAsset DynamicHotelsAndRentalsAsset DynamicJobsAsset DynamicLocalAsset DynamicRealEstateAsset DynamicTravelAsset EnhancedCpc EventAttribute EventItemAttribute ExclusionSegment ExpandedDynamicSearchAdInfo ExpandedTextAdInfo ExtendedDemographicInfo FinalAppUrl FixedCpm FixedCpmTargetFrequencyGoalInfo FlexibleRuleOperandInfo FlexibleRuleUserListInfo FrequencyCapEntry FrequencyCapKey GenderDimension GenderInfo GeoPointInfo GoalSetting GoalSetting.RetentionGoal HistoricalMetricsOptions HotelAdInfo HotelAdvanceBookingWindowInfo HotelCalloutAsset HotelCheckInDateRangeInfo HotelCheckInDayInfo HotelCityInfo HotelClassInfo HotelCountryRegionInfo HotelDateSelectionTypeInfo HotelIdInfo HotelLengthOfStayInfo HotelPropertyAsset HotelStateInfo HouseholdIncomeDimension ImageAdInfo ImageAsset ImageDimension InFeedVideoAdInfo IncomeRangeInfo InteractionTypeInfo IpBlockInfo ItemAttribute Keyword KeywordAnnotations KeywordConcept KeywordInfo KeywordPlanAggregateMetricResults KeywordPlanAggregateMetrics KeywordPlanDeviceSearches KeywordPlanHistoricalMetrics KeywordThemeInfo KnowledgeGraphAttributeMetadata LanguageInfo LeadFormAsset LeadFormCustomQuestionField LeadFormDeliveryMethod LeadFormField <a href="/google-ads/api/reference/rpc/v22/LeadFormSingleChoiceAnswers" class="devsite-nav-title gc-analytics-event" data-category="Site-Wide Custom Events" data-label="Book nav link, pathname: /google-ads/api/reference/rpc/v22/LeadFormSingleChoiceAnswers" track-type="bookNav" track-name="click" tra
2026-01-13T09:30:14
https://www.linkedin.com/uas/login?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Ffeed%2Fhashtag%2Fmcp&fromSignIn=true&trk=cold_join_sign_in
LinkedIn Login, Sign in | LinkedIn Sign in Sign in with Apple Sign in with a passkey By clicking Continue, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy . or Email or phone Password Show Forgot password? Keep me logged in Sign in We’ve emailed a one-time link to your primary email address Click on the link to sign in instantly to your LinkedIn account. If you don’t see the email in your inbox, check your spam folder. Resend email Back New to LinkedIn? Join now Agree & Join LinkedIn By clicking Continue, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy . LinkedIn © 2026 User Agreement Privacy Policy Community Guidelines Cookie Policy Copyright Policy Send Feedback Language العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional))
2026-01-13T09:30:14
https://www.linkedin.com/legal/privacy-policy?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fposts%2Fndc-conferences_check-out-nick-chapsas-workshop-building-activity-7416435226064744449-suZ8&trk=registration-frontend_join-form-privacy-policy
LinkedIn Privacy Policy Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws Privacy Policy Effective November 3, 2025 Your Privacy Matters LinkedIn’s mission is to connect the world’s professionals to allow them to be more productive and successful. Central to this mission is our commitment to be transparent about the data we collect about you, how it is used and with whom it is shared. This Privacy Policy applies when you use our Services (described below). We offer our users choices about the data we collect, use and share as described in this Privacy Policy,&nbsp; Cookie Policy ,&nbsp;Settings and our&nbsp; Help Center. Key Terms Choices  Settings &nbsp;are available to Members of LinkedIn and Visitors are provided&nbsp;separate&nbsp;controls.&nbsp; Learn More . Table of Contents Data We Collect How We Use Your Data How We Share Information Your Choices and Obligations Other Important Information Introduction We are a social network and online platform for professionals. People use our Services to find and be found for business opportunities, to connect with others and find information. Our Privacy Policy applies to any Member or Visitor to our Services. Our registered users (“Members”) share their professional identities, engage with their network, exchange knowledge and professional insights, post and view relevant content, learn and develop skills, and find business and career opportunities. Content and data on some of our Services is viewable to non-Members (“Visitors”). We use the term “Designated Countries” to refer to countries in the European Union (EU), European Economic Area (EEA), and Switzerland. Members and Visitors located in the Designated Countries or the UK can review additional information in our European Regional Privacy Notice . Services This Privacy Policy, including our Cookie Policy applies to your use of our Services. This Privacy Policy applies to LinkedIn.com, LinkedIn-branded apps, and other LinkedIn-branded sites, apps, communications and services offered by LinkedIn (“Services”), including off-site Services, such as our ad services and the “Apply with LinkedIn” and “Share with LinkedIn” plugins, but excluding services that state that they are offered under a different privacy policy. For California residents, additional disclosures required by California law may be found in our&nbsp; California Privacy Disclosure . Data Controllers and Contracting Parties If you are in the “Designated Countries”, LinkedIn Ireland Unlimited Company (“LinkedIn Ireland”) will be the controller of your personal data provided to, or collected by or for, or processed in connection with our Services. If you are outside of the Designated Countries, LinkedIn Corporation will be the controller of (or business responsible for) your personal data provided to, or collected by or for, or processed in connection with our Services. As a Visitor or Member of our Services, the collection, use and sharing of your personal data is subject to this Privacy Policy and other documents referenced in this Privacy Policy, as well as updates. Change Changes to the Privacy Policy apply to your use of our Services after the “effective date.” LinkedIn (“we” or “us”) can modify this Privacy Policy, and if we make material changes to it, we will provide notice through our Services, or by other means, to provide you the opportunity to review the changes before they become effective. If you object to any changes, you may&nbsp; close your account. You acknowledge that your continued use of our Services after we publish or send a notice about our changes to this Privacy Policy means that the collection, use and sharing of your personal data is subject to the updated Privacy Policy, as of its effective date. 1. Data We Collect 1.1 Data You Provide To Us You provide data to create an account with us. Registration To create an account you need to provide data including your name, email address and/or mobile number, general location (e.g., city), and a password. If you register for a premium Service, you will need to provide payment (e.g., credit card) and billing information. You create your LinkedIn profile (a complete profile helps you get the most from our Services). Profile You have&nbsp; choices &nbsp;about the information on your profile, such as your education, work experience, skills, photo,&nbsp; city or area , endorsements, and optional verifications of information on your profile (such as verifications of your identity or workplace). You don’t have to provide additional information on your profile; however, profile information helps you to get more from our Services, including helping recruiters and business opportunities find you. It’s your choice whether to include&nbsp; sensitive information &nbsp;on your profile and to make that sensitive information public. Please do not post or add personal data to your profile that you would not want to be publicly available. You may give other data to us, such as by syncing your calendar. Posting and Uploading We collect personal data from you when you provide, post or upload it to our Services, such as when you fill out a form, (e.g., with demographic data or&nbsp;salary), respond to a survey, or submit a resume or fill out a job application on our Services. If you sync your calendars with our Services, we will collect your calendar meeting information to keep growing your network by suggesting connections for you and others, and by providing information about events, e.g. times, places, attendees and contacts. You don’t have to post or upload personal data; though if you don’t, it may limit your ability to grow and engage with your network over our Services. 1.2 Data From Others Others may post or write about you. Content and News You and others may post content that includes information about you (as part of articles, posts, comments, videos) on our Services. We also may collect public information about you, such as professional-related news and accomplishments, and make it available as part of our Services, including, as permitted by your settings, in notifications to others of&nbsp; mentions in the news . Others may sync their calendar with our Services Contact and Calendar Information We receive personal data (including contact information) about you when others import or sync their calendar with our Services, associate their contacts with Member profiles, scan and upload business cards, or send messages using our Services (including invites or connection requests). If you or others opt-in to sync email accounts with our Services, we will also collect “email header” information that we can associate with Member profiles. Customers and partners may provide data to us. Partners We receive personal data (e.g., your job title and work email address) about you when you use the services of our customers and partners, such as employers or prospective employers and applicant tracking systems providing us job application data. Related Companies and Other Services We receive data about you when you use some of the other services provided by us or our&nbsp; Affiliates , including Microsoft. For example, you may choose to send us information about your contacts in Microsoft apps and services, such as Outlook, for improved professional networking activities on our Services or we may receive information from Microsoft about your engagement with their sites and services. 1.3 Service Use We log your visits and use of our Services, including mobile apps. We log usage data when you visit or otherwise use our Services, including our sites, app and platform technology, such as when you view or click on content (e.g., learning video) or ads (on or off our sites and apps), perform a search, install or update one of our mobile apps, share articles or apply for jobs. We use log-ins, cookies,&nbsp; device information &nbsp;and internet protocol (“IP”) addresses to identify you and log your use. 1.4 Cookies and Similar Technologies We collect data through cookies and similar technologies. As further described in our&nbsp; Cookie Policy , we use cookies and similar technologies (e.g., pixels and ad tags) to collect data (e.g., device IDs) to recognize you and your device(s) on, off and across different services and devices where you have engaged with our Services. We also allow some others to use cookies as described in our Cookie Policy. If you are outside the Designated Countries, we also collect (or rely on others, including Microsoft, who collect) information about your device where you have not engaged with our Services (e.g., ad ID, IP address, operating system and browser information) so we can provide our Members with relevant ads and better understand their effectiveness.&nbsp; Learn more . You can&nbsp; opt out &nbsp;from our use of data from cookies and similar technologies that track your behavior on the sites of others for ad targeting and other ad-related purposes. For Visitors,&nbsp; the controls are here . 1.5 Your Device and Location We receive data through cookies and similar technologies When you visit or leave our Services (including some plugins and our cookies or similar technology on the sites of others), we receive the URL of both the site you came from and the one you go to and the time of your visit. We also get information about your network and device (e.g., IP address, proxy server, operating system, web browser and add-ons, device identifier and features, cookie IDs and/or ISP, or your mobile carrier). If you use our Services from a mobile device, that device will send us data about your location based on your phone settings. We will ask you to opt-in before we use GPS or other&nbsp;tools&nbsp;to identify your precise location. 1.6 Communications If you communicate through our Services, we learn about that. We collect information about you when you communicate with others through our Services (e.g., when you send, receive, or engage with messages, events, or connection requests, including our marketing communications). This may include information that indicates who you are communicating with and when. We also use&nbsp; automated systems to support and protect our site. For example, we use such systems to suggest possible responses to messages and to manage or block content that violates our User Agreement or&nbsp; Professional Community Policies . 1.7 Workplace and School Provided Information When your organization (e.g., employer or school) buys a premium Service for you to use, they give us data about you. Others buying our Services for your use, such as your employer or your school, provide us with personal data about you and your eligibility to use the Services that they purchase for use by their workers, students or alumni. For example, we will get contact information for “ LinkedIn Page ” (formerly Company Page) administrators and for authorizing users of our premium Services, such as our recruiting, sales or learning products. 1.8 Sites and Services of Others We get data when you visit sites that include our ads, cookies or plugins or when you log-in to others’ services with your LinkedIn account. We receive information about your visits and interaction with services provided by others when you log-in with LinkedIn or visit others’ services that include some of our plugins (such as “Apply with LinkedIn”) or our ads, cookies or similar technologies. 1.9 Other We are improving our Services, which means we get new data and create new ways to use data. Our Services are dynamic, and we often introduce new features, which may require the collection of new information. If we collect materially different personal data or materially change how we collect, use or share your data, we will notify you and may also modify this Privacy Policy. Key Terms Affiliates Affiliates are companies controlling, controlled by or under common control with us, including, for example, LinkedIn Ireland, LinkedIn Corporation, LinkedIn Singapore and Microsoft Corporation or any of its subsidiaries (e.g., GitHub, Inc.). 2. How We Use Your Data We use your data to provide, support, personalize and develop our Services. How we use your personal data will depend on which Services you use, how you use those Services and the choices you make in your&nbsp; settings . We may use your personal data to improve, develop, and provide products and Services, develop and train artificial intelligence (AI) models, develop, provide, and personalize our Services, and gain insights with the help of AI, automated systems, and inferences, so that our Services can be more relevant and useful to you and others. You can review LinkedIn's Responsible AI principles here and learn more about our approach to generative AI here . Learn more about the inferences we may make, including as to your age and gender and how we use them. 2.1 Services Our Services help you connect with others, find and be found for work and business opportunities, stay informed, get training and be more productive. We use your data to authorize access to our Services and honor your settings. Stay Connected Our Services allow you to stay in touch and up to date with colleagues, partners, clients, and other professional contacts. To do so, you can “connect” with the professionals who you choose, and who also wish to “connect” with you. Subject to your and their&nbsp; settings , when you connect with other Members, you will be able to search each others’ connections in order to exchange professional opportunities. We use data about you (such as your profile, profiles you have viewed or data provided through address book uploads or partner integrations) to help others find your profile, suggest connections for you and others (e.g. Members who share your contacts or job experiences) and enable you to invite others to become a Member and connect with you. You can also opt-in to allow us to use your precise location or proximity to others for certain tasks (e.g. to suggest other&nbsp;nearby&nbsp;Members for you to connect with, calculate the commute to a new job, or notify your connections that you are at a professional event). It is your choice whether to invite someone to our Services, send a connection request, or allow another Member to become your connection. When you invite someone to connect with you, your invitation will include your network and basic profile information (e.g., name, profile photo, job title, region). We will send invitation reminders to the person you invited. You can&nbsp; choose &nbsp;whether or not to share your own list of connections with your connections. Visitors have&nbsp; choices &nbsp;about how we use their data. Stay Informed Our Services allow you to stay informed about news, events and ideas regarding professional topics you care about, and from professionals you respect. Our Services also allow you to improve your professional skills, or learn new ones. We use the data we have about you (e.g., data you provide, data we collect from your engagement with our Services and inferences we make from the data we have about you), to personalize our Services for you, such as by recommending or ranking relevant content and conversations on our Services. We also use the data we have about you to suggest skills you could add to your profile and skills that you might need to pursue your next opportunity. So, if you let us know that you are interested in a new skill (e.g., by watching a learning video), we will use this information to personalize content in your feed, suggest that you follow certain Members on our site, or suggest related learning content to help you towards that new skill. We use your content, activity and other data, including your name and photo, to provide notices to your network and others. For example, subject to your&nbsp; settings , we may notify others that you have updated your profile, posted content, took a&nbsp; social action , used a feature, made new connections or were&nbsp; mentioned in the news . Career Our Services allow you to explore careers, evaluate educational opportunities, and seek out, and be found for, career opportunities. Your profile can be found by those looking to hire (for a job or a&nbsp; specific task ) or be hired by you. We will use your data to recommend jobs and show you and others relevant professional contacts (e.g., who work at a company, in an industry, function or location or have certain skills and connections). You can signal that you are&nbsp; interested &nbsp;in changing jobs and share information with recruiters. We will use your data to recommend jobs to you and you to recruiters. We may use automated systems to provide content and recommendations to help make our Services more relevant to our Members, Visitors and customers. Keeping your profile accurate and up-to-date may help you better connect to others and to opportunities through our Services. Productivity Our Services allow you to collaborate with colleagues, search for potential clients, customers, partners and others to do business with. Our Services allow you to communicate with other Members and schedule and prepare meetings with them. If your&nbsp; settings &nbsp;allow, we scan messages to provide “bots” or similar tools that facilitate tasks such as scheduling meetings, drafting responses, summarizing messages or recommending next steps.&nbsp; Learn more . 2.2 Premium Services Our premium Services help paying users to search for and contact Members through our Services, such as searching for and contacting job candidates, sales leads and co-workers, manage talent and promote content. We sell premium Services that provide our customers and subscribers with customized-search functionality and tools (including messaging and activity alerts) as part of our talent, marketing and sales solutions. Customers can export limited information from your profile, such as name, headline, current company, current title, and general location (e.g., Dublin), such as to manage sales leads or talent, unless you&nbsp; opt-out . We do not provide contact information to customers as part of these premium Services without your consent. Premium Services customers can store information they have about you in our premium Services, such as a resume or contact information or sales history. The data stored about you by these customers is subject to the policies of those customers. Other enterprise Services and features that use your data include&nbsp; TeamLink &nbsp;and LinkedIn Pages (e.g., content analytics and followers). 2.3 Communications We contact you and enable communications between Members. We offer settings to control what messages you receive and how often you receive some types of messages. We will contact you through email, mobile phone, notices posted on our websites or apps, messages to your LinkedIn inbox, and other ways through our Services, including text messages and push notifications. We will send you messages about the availability of our Services, security, or other service-related issues. We also send messages about how to use our Services, network updates, reminders, job suggestions and promotional messages from us and our partners. You may change your communication&nbsp; preferences &nbsp;at any time. Please be aware that you cannot opt out of receiving service messages from us, including security and legal notices. We also enable&nbsp; communications &nbsp;between you and others through our Services, including for example&nbsp; invitations ,&nbsp; InMail ,&nbsp; groups &nbsp;and&nbsp; messages &nbsp;between connections. 2.4 Advertising We serve you tailored ads both on and off our Services. We offer you choices regarding personalized ads, but you cannot opt-out of seeing non-personalized ads. We target (and measure the performance of) ads to Members, Visitors and others both on and off our Services directly or through a variety of&nbsp;partners, using the following data, whether separately or combined: Data collected by advertising technologies on and off our Services using pixels, ad tags (e.g., when an advertiser installs a LinkedIn tag on their website), cookies, and other device identifiers; Member-provided information (e.g., profile, contact information, title and industry); Data from your use of our Services (e.g., search history, feed, content you read, who you follow or is following you, connections,&nbsp; groups &nbsp;participation, page visits, videos you watch, clicking on an ad, etc.), including as described in Section 1.3; Information from advertising partners , vendors and&nbsp; publishers ; and Information inferred from data described above (e.g., using job titles from a profile to infer industry, seniority, and compensation bracket; using graduation dates to infer age or using first names or pronoun usage to infer gender; using your feed activity to infer your interests; or using device data to recognize you as a Member). Learn more about the inferences we make and how they may be used for advertising. Learn more about the ad technologies we use and our advertising services and partners. You can learn more about our compliance with laws in the Designated Countries or the UK in our European Regional Privacy Notice . We will show you ads called&nbsp; sponsored content &nbsp;which look similar to non-sponsored content, except that they are labeled as advertising (e.g., as “ad” or “sponsored”). If you take a social action (such as like, comment or share) on these ads, your action is associated with your name and viewable by others, including the advertiser. Subject to your settings , if you take a social action on the LinkedIn Services,&nbsp;that action&nbsp;may be mentioned with related ads. For example, when you like a company we may include your name and photo when their sponsored content is shown. Ad Choices You have choices regarding our uses of certain categories of data to show you more relevant ads. Member settings can be found here . For Visitors, the setting is&nbsp;here . Info to Ad Providers We do not share your personal data with any non-Affiliated third-party advertisers or ad networks except for: (i) hashed IDs or device identifiers (to the extent they are personal data in some countries); (ii) with your separate permission (e.g., in a lead generation form) or (iii) data already visible to any users of the Services (e.g., profile). However, if you view or click on an ad on or off our Services, the ad provider will get a signal that someone visited the page that displayed the ad, and they may, through the use of mechanisms such as cookies, determine it is you. Advertising partners can associate personal data collected by the advertiser directly from you with hashed IDs or device identifiers received from us. We seek to contractually require such advertising partners to obtain your explicit, opt-in consent before doing so where legally required, and in such instances, we take steps to ensure that consent has been provided before processing data from them. 2.5 Marketing We promote our Services to you and others. In addition to advertising our Services, we use Members’ data and content for invitations and communications promoting membership and network growth, engagement and our Services, such as by showing your connections that you have used a feature on our Services. 2.6 Developing Services and Research We develop our Services and conduct research Service Development We use data, including public feedback, to conduct&nbsp; research &nbsp;and development for our Services in order to provide you and others with a better, more intuitive and personalized experience, drive membership growth and engagement on our Services, and help connect professionals to each other and to economic opportunity. Other Research We seek to create economic opportunity for Members of the global workforce and to help them be more productive and successful. We use the personal data available to us to research social, economic and workplace trends, such as jobs availability and skills needed for these&nbsp; jobs &nbsp;and policies that help bridge the gap in various industries and geographic areas. In some cases, we work with trusted third parties to perform this research, under&nbsp; controls &nbsp;that are designed to protect your privacy. We may also make public data available to researchers to enable assessment of the safety and legal compliance of our Services. We publish or allow others to publish economic insights, presented as aggregated data rather than personal data. Surveys Polls and surveys are conducted by us and others through our Services. You are not obligated to respond to polls or surveys, and you have choices about the information you provide. You may&nbsp; opt-out &nbsp;of survey invitations. 2.7 Customer Support We use data to help you and fix problems. We use data (which can include your communications) to investigate, respond to and resolve complaints and for Service issues (e.g., bugs). 2.8 Insights That Do Not Identify You We use data to generate insights that do not identify you. We use your data to perform analytics to produce and share insights that do not identify you. For example, we may use your&nbsp;data&nbsp;to generate statistics about our Members, their profession or industry, to calculate ad impressions served or clicked on (e.g., for basic business reporting to support billing and budget management or, subject to your settings , for reports to advertisers who may use them to inform their advertising campaigns), to show Members' information about engagement with a post or LinkedIn Page , to publish visitor demographics for a Service or create demographic workforce insights, or to understand usage of our services. 2.9 Security and Investigations We use data for security, fraud prevention and investigations. We and our Affiliates, including Microsoft, may use your data (including your communications) for security purposes or to prevent or investigate possible fraud or other violations of the law, our&nbsp; User Agreement &nbsp;and/or attempts to harm our Members, Visitors, company, Affiliates, or others. Key Terms Social Action E.g.&nbsp;like, comment, follow,&nbsp;share&nbsp; Partners Partners include ad networks, exchanges and&nbsp;others&nbsp; 3. How We Share Information 3.1 Our Services Any data that you include on your profile and any content you post or social action (e.g., likes, follows, comments, shares) you take on our Services will be seen by others, consistent with your settings. Profile Your profile is fully visible to all Members and customers of our Services. Subject to your&nbsp; settings , it can also be visible to others on or off of our Services (e.g., Visitors to our Services or users of third-party search tools). As detailed in our&nbsp; Help Center , your settings, degree of connection with the viewing Member, the subscriptions they may have, their&nbsp; usage of our Services , access channels and search types (e.g., by name or by keyword) impact the availability of your profile and whether they can view certain fields in your profile. Posts, Likes, Follows, Comments, Messages Our Services allow viewing and sharing information including through posts, likes, follows and comments. When you share an article or a post (e.g., an update, image, video or article) publicly it can be viewed by everyone and re-shared anywhere (subject to your&nbsp; settings ). Members, Visitors and others will be able to find and see your publicly-shared content, including your name (and photo if you have provided one). In a&nbsp; group , posts are visible to others according to group type. For example, posts in private groups are visible to others in the group and posts in public groups are visible publicly. Your membership in groups is public and part of your profile, but you can change visibility in your&nbsp; settings . Any information you share through companies’ or other organizations’ pages on our Services will be viewable by those organizations and others who view those pages' content. When you follow a person or organization, you are visible to others and that “page owner” as a follower. We let senders know when you act on their message, subject to your&nbsp; settings &nbsp;where applicable. Subject to your&nbsp; settings , we let a Member know when you view their profile. We also give you choices about letting organizations know when you've viewed their Page. When you like or re-share or comment on another’s content (including ads), others will be able to view these “social actions” and associate it with you (e.g., your name, profile and photo if you provided it). Your employer can see how you use Services they provided for your work (e.g. as a recruiter or sales agent) and related information. We will not show them your job searches or personal messages. Enterprise Accounts Your employer may offer you access to our enterprise Services such as Recruiter, Sales Navigator, LinkedIn Learning or our advertising Campaign Manager. Your employer can review and manage your use of such enterprise Services. Depending on the enterprise Service, before you use such Service, we will ask for permission to share with your employer relevant data from your profile or use of our non-enterprise Services. For example, users of&nbsp;Sales Navigator&nbsp;will be asked to share their “social selling index”, a score calculated in part based on their personal account activity. We understand that certain activities such as job hunting and personal messages are sensitive, and so we do not share those with your employer unless you choose to share it with them through our Services (for example, by applying for a new position in the same company or mentioning your job hunting in a message to a co-worker through our Services). Subject to your&nbsp; settings , when you use workplace tools and services (e.g., interactive employee directory tools) certain of your data may also be made available to your employer or be connected with information we receive from your employer to enable these tools and services. 3.2 Communication Archival Regulated Members may need to store communications outside of our Service. Some Members (or their employers) need, for legal or professional compliance, to archive their communications and social media activity, and will use services of others to provide these archival services. We enable archiving of messages by and to those Members outside of our Services. For example, a financial advisor needs to archive communications with her clients through our Services in order to maintain her professional financial advisor license. 3.3 Others’ Services You may link your account with others’ services so that they can look up your contacts’ profiles, post your shares on such platforms, or enable you to start conversations with your connections on such platforms. Excerpts from your profile will also appear on the services of others. Subject to your&nbsp; settings , other services may look up your profile. When you opt to link your account with other services, personal data (e.g., your name, title, and company) will become available to them. The sharing and use of that personal data will be described in, or linked to, a consent screen when you opt to link the accounts. For example, you may link your Twitter or WeChat account to share content from our Services into these other services, or your email provider may give you the option to upload your LinkedIn contacts into its own service. Third-party services have their own privacy policies, and you may be giving them permission to use your data in ways we would not. You may&nbsp; revoke &nbsp;the link with such accounts. The information you make available to others in our Services (e.g., information from your profile, your posts, your engagement with the posts, or message to Pages) may be available to them on other services . For example, search tools, mail and calendar applications, or talent and lead managers may show a user limited profile data (subject to your settings ), and social media management tools or other platforms may display your posts. The information retained on these services may not reflect updates you make on LinkedIn. 3.4 Related Services We share your data across our different Services and LinkedIn affiliated entities. We will share your personal data with our Affiliates to provide and develop our Services. For example, we may refer a query to Bing in some instances, such as where you'd benefit from a more up to date response in a chat experience. Subject to our&nbsp; European Regional Privacy Notice , we may also share with our Affiliates, including Microsoft, your (1) publicly-shared content (such as your public LinkedIn posts) to provide or develop their services and (2) personal data to improve, provide or develop their advertising services. Where allowed , we may combine information internally across the different Services covered by this Privacy Policy to help our Services be more relevant and useful to you and others. For example, we may personalize your feed or job recommendations based on your learning history. 3.5 Service Providers We may use others to help us with our Services. We use others to help us provide our Services (e.g., maintenance, analysis, audit, payments, fraud detection, customer support, marketing and development). They will have access to your information (e.g., the contents of a customer support request) as reasonably necessary to perform these tasks on our behalf and are obligated not to disclose or use it for other purposes. If you purchase a Service from us, we may use a payments service provider who may separately collect information about you (e.g., for fraud prevention or to comply with legal obligations). 3.6 Legal Disclosures We may need to share your data when we believe it’s required by law or to help protect the rights and safety of you, us or others. It is possible that we will need to disclose information about you when required by law, subpoena, or other legal process or if we have a good faith belief that disclosure is reasonably necessary to (1) investigate, prevent or take action regarding suspected or actual illegal activities or to assist government enforcement agencies; (2) enforce our agreements with you; (3) investigate and defend ourselves against any third-party claims or allegations; (4) protect the security or integrity of our Services or the products or services of our Affiliates (such as by sharing with companies facing similar threats); or (5) exercise or protect the rights and safety of LinkedIn, our Members, personnel or others. We attempt to notify Members about legal demands for their personal data when appropriate in our judgment, unless prohibited by law or court order or when the request is an emergency. We may dispute such demands when we believe, in our discretion, that the requests are overbroad, vague or lack proper authority, but we do not promise to challenge every demand. To learn more see our&nbsp; Data Request Guidelines &nbsp;and&nbsp; Transparency Report . 3.7 Change in Control or Sale We may share your data when our business is sold to others, but it must continue to be used in accordance with this Privacy Policy. We can also share your personal data as part of a sale, merger or change in control, or in preparation for any of these events. Any other entity which buys us or part of our business will have the right to continue to use your data, but only in the manner set out in this Privacy Policy unless you agree otherwise. 4. Your Choices &amp; Obligations 4.1 Data Retention We keep most of your personal data for as long as your account is open. We generally retain your personal data as long as you keep your account open or as needed to provide you Services. This includes data you or others provided to us and data generated or inferred from your use of our Services. Even if you only use our Services when looking for a new job every few years, we will retain your information and keep your profile open, unless you close your account. In some cases we choose to retain certain information (e.g., insights about Services use) in a depersonalized or aggregated form. 4.2 Rights to Access and Control Your Personal Data You can access or delete your personal data. You have many choices about how your data is collected, used and shared. We provide many&nbsp; choices &nbsp;about the collection, use and sharing of your data, from deleting or correcting data you include in your&nbsp; profile &nbsp;and controlling the visibility of your&nbsp; posts &nbsp;to advertising&nbsp; opt-outs &nbsp;and&nbsp; communication &nbsp;controls. We offer you&nbsp; settings &nbsp;to control and manage the personal data we have about you. For personal data that we have about you, you can: Delete Data :&nbsp;You can ask us to erase or delete all or some of your personal data (e.g., if it is no longer necessary to provide Services to you). Change or Correct Data : You can edit some of your personal data through your account. You can also ask us to change, update or fix your data in certain cases, particularly if it’s inaccurate. Object to, or Limit or Restrict, Use of Data :&nbsp;You can ask us to stop using all or some of your personal data (e.g., if we have no legal right to keep using it) or to limit our use of it (e.g., if your personal data is inaccurate or unlawfully held). Right to Access and/or Take Your Data :&nbsp;You can ask us for a copy of your personal data and can ask for a copy of personal data you provided in machine readable form. Visitors can learn more about how to make these requests here . You may also contact us using the contact information below, and we will consider your request in accordance with applicable laws. Residents in the&nbsp; Designated Countries and the UK ,&nbsp;and&nbsp; other regions ,&nbsp;may have additional rights under their laws. 4.3 Account Closure We keep some of your data even after you close your account. If you choose to close your&nbsp; LinkedIn &nbsp;account, your personal data will generally stop being visible to others on our Services within 24 hours. We generally delete closed account information within 30 days of account closure, except as noted below. We retain your personal data even after you have closed your account if reasonably necessary to comply with our legal obligations (including law enforcement requests), meet regulatory requirements, resolve disputes, maintain security, prevent fraud and abuse (e.g., if we have&nbsp; restricted &nbsp;your account for breach of our&nbsp; Professional Community Policies ), enforce our User Agreement, or fulfill your request to "unsubscribe" from further messages from us. We will retain de-personalized information after your account has been closed. Information you have shared with others (e.g., through InMail, updates or group posts) will remain visible after you close your account or delete the information from your own profile or mailbox, and we do not control data that other Members have copied out of our Services. Groups content and ratings or review content associated with closed accounts will show an unknown user as the source. Your profile may continue to be displayed in the services of others (e.g., search tools) until they refresh their cache. 5. Other Important Information 5.1. Security We monitor for and try to prevent security breaches. Please use the security features available through our Services. We implement security safeguards designed to protect your data, such as HTTPS. We regularly monitor our systems for possible vulnerabilities and attacks. However, we cannot warrant the security of any information that you send us. There is no guarantee that data may not be accessed, disclosed, altered, or destroyed by breach of any of our physical, technical, or managerial safeguards. 5.2. Cross-Border Data Transfers We store and use your data outside your country. We process data both inside and outside of the United States and rely on legally-provided mechanisms to lawfully transfer data across borders.&nbsp; Learn more . Countries where we process data may have laws which are different from, and potentially not as protective as, the laws of your own country. 5.3 Lawful Bases for Processing We have lawful bases to collect, use and share data about you. You have choices about our use of your data. At any time, you can withdraw consent you have provided by going to settings. We will only collect and process personal data about you where we have lawful bases. Lawful bases include&nbsp;consent (where you have given consent), contract (where processing is necessary for the performance of a contract with you (e.g., to deliver the LinkedIn Services you have requested) and “legitimate interests.”&nbsp; Learn more . Where we rely on your consent to process personal data, you have the right to withdraw or decline your consent at any time and where we rely on legitimate interests, you have the right to object.&nbsp; Learn More . If you have any questions about the lawful bases upon which we collect and use your personal data, please contact our Data Protection Officer&nbsp;here . If you're located in one of the Designated Countries or the UK, you can learn more about our lawful bases for processing in our European Regional Privacy Notice . 5.4. Direct Marketing and Do Not Track Signals Our statements regarding direct marketing and “do not track” signals. We currently do not share personal data with third parties for their direct marketing purposes without your permission.&nbsp; Learn more &nbsp;about this and about our response to “do not track” signals. 5.5. Contact Information You can contact us or use other options to resolve any complaints. If you have questions or complaints regarding this Policy, please first&nbsp; contact LinkedIn &nbsp;online. You can also reach us by&nbsp; physical mail . If contacting us does not resolve your complaint, you have more&nbsp; options . Residents in the&nbsp; Designated Countries &nbsp;and&nbsp; other regions &nbsp;may also have the right to contact our Data Protection Officer&nbsp;here . If this does not resolve your complaint, Residents in the&nbsp;Designated Countries&nbsp;and other regions may have more&nbsp; options &nbsp;under their laws. Key Terms Consent Where we process data based on consent, we will ask for your explicit consent.&nbsp;You may withdraw your consent at any time, but that will not affect the lawfulness of the processing of your personal data prior to such withdrawal.&nbsp;Where we rely on&nbsp;contract, we will ask that you agree to the processing of personal data that is necessary for&nbsp;entering into or&nbsp;performance of your contract with us. We will rely on legitimate interests as a basis for data processing where the processing of your data is not overridden by your interests or fundamental rights and freedoms.&nbsp; LinkedIn &copy; 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://www.linkedin.com/legal/user-agreement?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Ffeed%2Fhashtag%2Fmcp&trk=registration-frontend_join-form-user-agreement
User Agreement | LinkedIn Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Effective on November 3, 2025 Our mission is to connect the world’s professionals to allow them to be more productive and successful. Our services are designed to promote economic opportunity for our members by enabling you and millions of other professionals to meet, exchange ideas, learn, and find opportunities or employees, work, and make decisions in a network of trusted relationships. Table of Contents: Introduction Obligations Rights and Limits Disclaimer and Limit of Liability Termination Governing Law and Dispute Resolution General Terms LinkedIn “Dos and Don’ts” Complaints Regarding Content How To Contact Us Introduction 1.1 Contract When you use our Services you agree to all of these terms. Your use of our Services is also subject to our Cookie Policy and our Privacy Policy, which covers how we collect, use, share, and store your personal information. By creating a LinkedIn account or accessing or using our Services (described below), you are agreeing to enter into a legally binding contract with LinkedIn (even if you are using third party credentials or using our Services on behalf of a company). If you do not agree to this contract (“Contract” or “User Agreement”), do not create an account or access or otherwise use any of our Services. If you wish to terminate this Contract at any time, you can do so by closing your account and no longer accessing or using our Services. As a Visitor or Member of our Services, the collection, use, and sharing of your personal data is subject to our Privacy Policy , our Cookie Policy and other documents referenced in our Privacy Policy , and updates. You acknowledge and have read our Privacy Policy . Services This Contract applies to LinkedIn.com, LinkedIn-branded apps,&nbsp;and other LinkedIn-related sites, apps, communications, and other services that state that they are offered under this Contract (“Services”), including the offsite collection of data for those Services, such as via our ads and the “Apply with LinkedIn” and “Share with LinkedIn” plugins. LinkedIn and other Key Terms You are entering into this Contract with LinkedIn (also referred to as “we” and “us”). Designated Countries . We use the term “Designated Countries” to refer to countries in the European Union (EU), European Economic Area (EEA), and Switzerland. If you reside in the “Designated Countries”, you are entering into this Contract with LinkedIn Ireland Unlimited Company (“LinkedIn Ireland”) and LinkedIn Ireland will be the controller of your personal data provided to, or collected by or for, or processed in connection with our Services. If you reside outside of the “Designated Countries”, you are entering into this Contract with LinkedIn Corporation (“LinkedIn Corp.”) and LinkedIn Corp. will be the controller of (or business responsible for) your personal data provided to, or collected by or for, or processed in connection with our Services. Affiliates .&nbsp;Affiliates are companies controlling, controlled by or under common control with us, including, for example, LinkedIn Ireland, LinkedIn Corporation, LinkedIn Singapore and Microsoft Corporation or any of its subsidiaries (e.g., Github, Inc.). Social Action .&nbsp;Actions that members take on our services such as likes, comments, follows, sharing content. Content .&nbsp;Content includes, for example, feed posts, feedback, comments, profiles, articles (and contributions), group posts, job postings, messages (including InMails), videos, photos, audio, and/or PDFs. 1.2 Members and Visitors This Contract applies to Members and Visitors. When you register and join the LinkedIn Services, you become a “Member”. If you have chosen not to register for our Services, you may access certain features as a “Visitor.” 1.3 Changes We may make changes to this Contract. We may modify this Contract, our Privacy Policy and our Cookie Policy from time to time. If we materially change these terms or if we are legally required to provide notice, we will provide you notice through our Services, or by other means, to provide you the opportunity to review the changes before they become effective. However, we may not always provide prior notice of changes to these terms (1) when those changes are legally required to be implemented with immediate effect, or (2) when those changes relate to a newly launched service or feature.&nbsp;We agree that changes cannot be retroactive. If you object to any of these changes, you may close your account . Your continued use of our Services after we publish or send a notice about our changes to these terms means that you are consenting to the updated terms as of their effective date. 2. Obligations 2.1 Service Eligibility Here are some promises that you make to us in this Contract: You’re eligible to enter into this Contract and you are at least our “Minimum Age.” The Services are not for use by anyone under the age of 16. To use the Services, you agree that: (1) you must be the "Minimum Age" (described below) or older; (2) you will only have one LinkedIn account, which must be in your real name; and (3) you are not already restricted by LinkedIn from using the Services. Creating an account with false information is a violation of our terms, including accounts registered on behalf of others or persons under the age of 16. “Minimum Age” means 16 years old. However, if law requires that you must be older in order for LinkedIn to lawfully provide the Services to you without parental consent (including using your personal data) then the Minimum Age is such older age. Learn More 2.2 Your Account You will keep your password a secret You will not share your account with anyone else and will follow our policies and the law. Members are account holders. You agree to: (1) protect against wrongful access to your account (e.g., use a strong password and keep it confidential); (2) not share or transfer your account or any part of it (e.g., sell or transfer the personal data of others by transferring your connections); and (3) follow the law, our list of Dos and Don’ts (below), and our Professional Community Policies . Learn More You are responsible for anything that happens through your account unless you close it or report misuse. As between you and others (including your employer), your account belongs to you. However, if the Services were purchased by another party for you to use&nbsp;in connection with your work for them (e.g., Recruiter seat or LinkedIn Learning subscription bought by your employer), the party paying for such Service has the right to control access to and get reports on your use of such paid Service; however, they do not have rights to your personal account. 2.3 Payment You’ll honor your payment obligations and you are okay with us storing your payment information. You understand that there may be fees and taxes that are added to our prices. Refunds are subject to our policy, and we may modify our prices and those modified prices will apply prospectively. If you buy any of our paid Services, you agree to pay us the applicable fees and taxes and you agree to the additional terms specific to the paid Services. Failure to pay these fees will result in the termination of your paid Services. Also, you agree that: Your purchase may be subject to foreign exchange fees or differences in prices based on location (e.g., exchange rates). We may store and continue billing your payment method (e.g., credit card), even after it has expired, to avoid interruptions in your paid Services and to use it to pay for other Services you may buy. If your primary payment method fails, we may automatically charge a secondary payment method, if you have provided one. You may update or change your payment method. Learn more If you purchase a subscription, your payment method automatically will be charged at the start of each subscription period for the fees and taxes applicable to that period. To avoid future charges, cancel before the renewal date. Learn how to cancel or suspend your paid subscription Services. We may modify our prices effective prospectively upon reasonable notice to the extent allowed under the law. All of your paid Services are subject to LinkedIn’s refund policy . We may calculate taxes payable by you based on the billing information that you provide us. You can get a copy of your invoice through your LinkedIn account settings under “ Purchase History ”. 2.4 Notices and Messages You’re okay with us providing notices and messages to you through our websites, apps, and contact information. If your contact information is out of date, you may miss out on important notices. You agree that we will provide notices and messages to you in the following ways: (1) within the Services or (2) sent to the contact information you provided us (e.g., email, mobile number, physical address). You agree to keep your contact information up to date. Please review your settings to control and limit the types of messages you receive from us. 2.5 Sharing When you share information on our Services, others can see, copy and use that information. Our Services allow sharing of information (including content) in many ways, such as through your profile, posts, articles, group posts, links to news articles, job postings, messages, and InMails. Depending on the feature and choices you make, information that you share may be seen by other Members, Visitors, or others (on or off of the Services). Where we have made settings available, we will honor the choices you make about who can see content or other information (e.g., message content to your addressees, sharing content only to LinkedIn connections, restricting your profile visibility from search tools, or opting not to notify others of your LinkedIn profile update). For job searching activities, we default to not notifying your connections or the public. So, if you apply for a job through our Services or opt to signal that you are interested in a job, our default is to share it only with the job poster. To the extent that laws allow this, we are not obligated to publish any content or other information on our Services and can remove it with or without notice. 3. Rights and Limits 3.1. Your License to LinkedIn You own all of your original content that you provide to us, but you also grant us a non-exclusive license to it. We’ll honor the choices you make about who gets to see your content, including how it can be used for ads. As between you and LinkedIn, you own your original content that you submit or post to the Services.&nbsp; You grant LinkedIn and our Affiliates the following non-exclusive license to the content and other information you provide (e.g., share, post, upload, and/or otherwise submit) to our Services: A worldwide, transferable and sublicensable right to use, copy, modify, distribute, publicly perform and display, host, and process your content and other information without any further consent, notice and/or compensation to you or others. These rights are limited in the following ways: You can end this license for specific content by deleting such content from the Services, or generally by closing your account, except (a) to the extent you (1) shared it with others as part of the Services and they copied, re-shared it or stored it, (2) we had already sublicensed others prior to your content removal or closing of your account, or (3) we are required by law to retain or share it with others, and (b) for the reasonable time it takes to remove&nbsp;the content you delete from backup and other systems. We will not include your content in advertisements for the products and services of third parties to others without your separate consent (including sponsored content). However, without compensation to you or others, ads may be served near your content and other information, and your social actions may be visible and included with ads, as noted in the Privacy Policy. If you use a Service feature, we may mention that with your name or photo to promote that feature within our Services, subject to your settings. We will honor the audience choices for shared content (e.g., “Connections only”). For example, if you choose to share your post to "Anyone on or off LinkedIn” (or similar): (a) we may make it available off LinkedIn; (b) we may enable others to publicly share onto third-party services (e.g., a Member embedding your post on a third party service); and/or (c) we may enable search tools to make that public content findable though their services. Learn More While we may edit and make format changes to your content (such as translating or transcribing it, modifying the size, layout or file type, and removing or adding labels or metadata), we will take steps to avoid materially modifying the meaning of your expression in content you share with others.&nbsp; Because you own your original content and we only have non-exclusive rights to it, you may choose to make it available to others, including under the terms of a Creative Commons license . You and LinkedIn agree that if content includes personal data, it is subject to our Privacy Policy. You and LinkedIn agree that we may access, store, process, and use any information (including content and/or personal data) that you provide in accordance with the terms of the Privacy Policy and your choices (including settings). By submitting suggestions or other feedback regarding our Services to LinkedIn, you agree that LinkedIn can use and share (but does not have to) such feedback for any purpose without compensation to you. You promise to only provide content and other information that you have the right to share and that your LinkedIn profile will be truthful. You agree to only provide content and other information that does not violate the law or anyone’s rights (including intellectual property rights). You have choices about how much information to provide on your profile but also agree that the profile information you provide will be truthful. LinkedIn may be required by law to remove certain content and other information in certain countries. 3.2 Service Availability We may change or limit the availability of some features, or end any Service. We may change, suspend or discontinue any of our Services. We may also limit the availability of features, content and other information so that they are not available to all Visitors or Members (e.g., by country or by subscription access). We don’t promise to store or show (or keep showing) any information (including content) that you’ve shared. LinkedIn is not a storage service. You agree that we have no obligation to store, maintain or provide you a copy of any content or other information that you or others provide, except to the extent required by applicable law and as noted in our Privacy Policy. 3.3 Other Content, Sites and Apps Your use of others’ content and information posted on our Services, is at your own risk. Others may offer their own products and services through our Services, and we aren’t responsible for those third-party activities. Others’ Content: By using the Services, you may encounter content or other information that might be inaccurate, incomplete, delayed, misleading, illegal, offensive, or otherwise harmful. You agree that we are not responsible for content or other information made available through or within the Services by others, including Members. While we apply automated tools to review much of the content and other information presented in the Services, we cannot always prevent misuse of our Services, and you agree that we are not responsible for any such misuse. You also acknowledge the risk that others may share inaccurate or misleading information about you or your organization, and that you or your organization may be mistakenly associated with content about others, for example, when we let connections and followers know you or your organization were mentioned in the news. Members have choices about this feature . Others’ Products and Services: LinkedIn may help connect you to other Members (e.g., Members using Services Marketplace or our enterprise recruiting, jobs, sales, or marketing products) who offer you opportunities (on behalf of themselves, their organizations, or others) such as offers to become a candidate for employment or other work or offers to purchase products or services. You acknowledge that LinkedIn does not perform these offered services, employ those who perform these services, or provide these offered products.&nbsp; You further acknowledge that LinkedIn does not supervise, direct, control, or monitor Members in the making of these offers, or in their providing you with work, delivering products or performing services, and you agree that (1) LinkedIn is not responsible for these offers, or performance or procurement of them, (2) LinkedIn does not endorse any particular Member’s offers, and (3) LinkedIn is not an agent or employment agency on behalf of any Member offering employment or other work, products or services. With respect to employment or other work, LinkedIn does not make employment or hiring decisions on behalf of Members offering opportunities and does not have such authority from Members or organizations using our products.&nbsp; For Services Marketplace , (a) you must be at least 18 years of age to procure, offer, or perform services, and (b) you represent and warrant that you have all the required licenses and will provide services consistent with the relevant industry standards and our Professional Community Policies .&nbsp; Others’ Events: Similarly, LinkedIn may help you register for and/or attend events organized by Members and connect with other Members who are attendees at such events. You agree that (1) LinkedIn is not responsible for the conduct of any of the Members or other attendees at such events, (2) LinkedIn does not endorse any particular event listed on our Services, (3) LinkedIn does not review and/or vet any of these events or speakers, and (4) you will adhere to the terms and conditions that apply to such events. 3.4 Limits We have the right to limit how you connect and interact on our Services. LinkedIn reserves the right to limit your use of the Services, including the number of your connections and your ability to contact other Members. LinkedIn reserves the right to restrict, suspend, or terminate your account if you breach this Contract or the law or are misusing the Services (e.g., violating any of the Dos and Don’ts or Professional Community Policies ). We can also remove any content or other information you shared if we believe it violates our Professional Community Policies or Dos and Don’ts or otherwise violates this Contract. Learn more about how we moderate content. 3.5 Intellectual Property Rights We’re providing you notice about our intellectual property rights. LinkedIn reserves all of its intellectual property rights in the Services. Trademarks and logos used in connection with the Services are the trademarks of their respective owners. LinkedIn, and “in” logos and other LinkedIn trademarks, service marks, graphics and logos used for our Services are trademarks or registered trademarks of LinkedIn. 3.6 Recommendations and Automated Processing We use data and other information about you to make and order relevant suggestions and to generate content for you and others. Recommendations: We use the data and other information that you provide and that we have about Members and content on the Services to make recommendations for connections, content, ads, and features that may be useful to you. We use that data and other information to recommend and to present information to you in an order that may be more relevant for you. For example, that data and information may be used to recommend jobs to you and you to recruiters and to organize content in your feed in order to optimize your experience and use of the Services. Keeping your profile accurate and up to date helps us to make these recommendations more accurate and relevant. Learn More &nbsp; Generative AI Features: By using the Services, you may interact with features we offer that automate content generation for you. The content that is generated might be inaccurate, incomplete, delayed, misleading or not suitable for your purposes. Please review and edit such content before sharing with others. Like all content you share on our Services, you are responsible for ensuring it complies with our Professional Community Policies , including not sharing misleading information. The Services may include content automatically generated and shared using tools offered by LinkedIn or others off LinkedIn. Like all content and other information on our Services, regardless of whether it's labeled as created by “AI”, be sure to carefully review before relying on it. 4. Disclaimer and Limit of Liability 4.1 No Warranty This is our disclaimer of legal liability for the quality, safety, or reliability of our Services. LINKEDIN AND ITS AFFILIATES MAKE NO REPRESENTATION OR WARRANTY ABOUT THE SERVICES, INCLUDING ANY REPRESENTATION THAT THE SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, AND PROVIDE THE SERVICES (INCLUDING CONTENT, OUTPUT AND INFORMATION) ON AN “AS IS” AND “AS AVAILABLE” BASIS. TO THE FULLEST EXTENT PERMITTED UNDER APPLICABLE LAW, LINKEDIN AND ITS AFFILIATES DISCLAIM ANY IMPLIED OR STATUTORY WARRANTY, INCLUDING ANY IMPLIED WARRANTY OF TITLE, ACCURACY, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. If you plan to use content, output and information for any reason, it is your responsibility to verify its accuracy and fitness for your purposes, because any content, output and information on the service may not reflect accurate, complete, or current information. 4.2 Exclusion of Liability These are the limits of legal liability we may have to you. TO THE FULLEST EXTENT PERMITTED BY LAW (AND UNLESS LINKEDIN HAS ENTERED INTO A SEPARATE WRITTEN AGREEMENT THAT OVERRIDES THIS CONTRACT), LINKEDIN AND ITS AFFILIATES, WILL NOT BE LIABLE IN CONNECTION WITH THIS CONTRACT FOR LOST PROFITS OR LOST BUSINESS OPPORTUNITIES, REPUTATION (E.G., OFFENSIVE OR DEFAMATORY STATEMENTS), LOSS OF DATA (E.G., DOWN TIME OR LOSS, USE OF, OR CHANGES TO, YOUR INFORMATION OR CONTENT) OR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES. LINKEDIN AND ITS AFFILIATES WILL NOT BE LIABLE TO YOU IN CONNECTION WITH THIS CONTRACT FOR ANY AMOUNT THAT EXCEEDS (A) THE TOTAL FEES PAID OR PAYABLE BY YOU TO LINKEDIN FOR THE SERVICES DURING THE TERM OF THIS CONTRACT, IF ANY, OR (B) US $1000. 4.3 Basis of the Bargain; Exclusions The limitations of liability in this Section 4 are part of the basis of the bargain between you and LinkedIn and shall apply to all claims of liability (e.g., warranty, tort, negligence, contract and law) even if LinkedIn or its affiliates has been told of the possibility of any such damage, and even if these remedies fail their essential purpose. THESE LIMITATIONS OF LIABILITY DO NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY OR FOR FRAUD, GROSS NEGLIGENCE OR INTENTIONAL MISCONDUCT, OR IN CASES OF NEGLIGENCE, WHERE A MATERIAL OBLIGATION HAS BEEN BREACHED. A MATERIAL OBLIGATION BEING AN OBLIGATION WHICH FORMS A PREREQUISITE TO OUR DELIVERY OF SERVICES AND ON WHICH YOU MAY REASONABLY RELY, BUT ONLY TO THE EXTENT THAT THE DAMAGES WERE DIRECTLY CAUSED BY THE BREACH AND WERE FORESEEABLE UPON CONCLUSION OF THIS CONTRACT AND TO THE EXTENT THAT THEY ARE TYPICAL IN THE CONTEXT OF THIS CONTRACT. 5. Termination We can each end this Contract, but some rights and obligations survive. Both you and LinkedIn may terminate this Contract at any time with notice to the other. On termination, you lose the right to access or use the Services. The following shall survive termination: Our rights to use and disclose your feedback; Section 3 (subject to 3.1.1); Sections 4, 6, 7, and 8.2 of this Contract; and Any amounts owed by either party prior to termination remain owed after termination. You can visit our Help Center to learn about how to close your account 6. Governing Law and Dispute Resolution In the unlikely event we end up in a legal dispute, depending on where you live, you and LinkedIn agree to resolve it in California courts using California law, Dublin, Ireland courts using Irish law, or as otherwise provided in this section. If you live in the Designated Countries, the laws of Ireland govern all claims related to LinkedIn's provision of the Services, but this shall not deprive you of the mandatory consumer protections under the law of the country to which we direct your Services where you have habitual residence. With respect to jurisdiction, you and LinkedIn agree to choose the courts of the country to which we direct your Services where you have habitual residence for all disputes arising out of or relating to this User Agreement, or in the alternative, you may choose the responsible court in Ireland. If you are a business user within the scope of Article 6(12) of the EU Digital Markets Act (“DMA”) and have a dispute arising out of or in connection with Article 6(12) of the DMA, you may also utilize the alternative dispute resolution mechanism available in the Help Center . For others outside of Designated Countries, including those who live outside of the United States: You and LinkedIn agree that the laws of the State of California, U.S.A., excluding its conflict of laws rules, shall exclusively govern any dispute relating to this Contract and/or the Services. You and LinkedIn both agree that all claims and disputes can be litigated only in the federal or state courts in Santa Clara County, California, USA, and you and LinkedIn each agree to personal jurisdiction in those courts. You may have additional rights of redress and appeal for some decisions made by LinkedIn that impact you. 7. General Terms Here are some important details about the Contract. If a court with authority over this Contract finds any part of it unenforceable, you and we agree that the court should modify the terms to make that part enforceable while still achieving its intent. If the court cannot do that, you and we agree to ask the court to remove that unenforceable part and still enforce the rest of this Contract. This Contract (including additional terms that may be provided by us when you engage with a feature of the Services) is the only agreement between us regarding the Services and supersedes all prior agreements for the Services. If we don't act to enforce a breach of this Contract, that does not mean that LinkedIn has waived its right to enforce this Contract. You may not assign or transfer this Contract (or your membership or use of Services) to anyone without our consent. However, you agree that LinkedIn may assign this Contract to its affiliates or a party that buys it without your consent. There are no third-party beneficiaries to this Contract. You agree that the only way to provide us legal notice is at the addresses provided in Section 10. 8. LinkedIn “Dos and Don’ts” LinkedIn is a community of professionals. This list of “Dos and Don’ts” along with our Professional Community Policies limits what you can and cannot do on our Services, unless otherwise explicitly permitted by LinkedIn in a separate writing (e.g., through a research agreement). 8.1. Dos You agree that you will: Comply with all applicable laws, including, without limitation, privacy laws, intellectual property laws, anti-spam laws, export control laws, laws governing the content shared, and other applicable laws and regulatory requirements; Provide accurate contact and identity information to us and keep it updated; Use your real name on your profile; and Use the Services in a professional manner. 8.2. Don’ts You agree that you will&nbsp; not : Create a false identity on LinkedIn, misrepresent your identity, create a Member profile for anyone other than yourself (a real person), or use or attempt to use another’s account (such as sharing log-in credentials or copying cookies); Develop, support or use software, devices, scripts, robots or any other means or processes (such as crawlers, browser plugins and add-ons or any other technology) to scrape or copy the Services, including profiles and other data from the Services; Override any security feature or bypass or circumvent any access controls or use limits of the Services (such as search results, profiles, or videos); Copy, use, display or distribute any information (including content) obtained from the Services, whether directly or through third parties (such as search tools or data aggregators or brokers), without the consent of the content owner (such as LinkedIn for content it owns); Disclose information that you do not have the consent to disclose (such as confidential information of others (including your employer); Violate the intellectual property rights of others, including copyrights, patents, trademarks, trade secrets or other proprietary rights. For example, do not copy or distribute (except through the available sharing functionality) the posts or other content of others without their permission, which they may give by posting under a Creative Commons license; Violate the intellectual property or other rights of LinkedIn, including, without limitation, (i) copying or distributing our learning videos or other materials, (ii) copying or distributing our technology, unless it is released under open source licenses; or (iii) using the word “LinkedIn” or our logos in any business name, email, or URL except as provided in the Brand Guidelines ; Post (or otherwise share) anything that contains software viruses, worms, or any other harmful code; Reverse engineer, decompile, disassemble, decipher or otherwise attempt to derive the source code for the Services or any related technology that is not open source; Imply or state that you are affiliated with or endorsed by LinkedIn without our express consent (e.g., representing yourself as an accredited LinkedIn trainer); Rent, lease, loan, trade, sell/re-sell or otherwise monetize the Services or related data or access to the same, without LinkedIn’s consent; Deep-link to our Services for any purpose other than to promote your profile or a Group on our Services, without LinkedIn’s consent; Use bots or other unauthorized automated methods to access the Services, add or download contacts, send or redirect messages, create, comment on, like, share, or re-share posts, or otherwise drive inauthentic engagement; Engage in “framing”, “mirroring”, or otherwise simulating the appearance or function of the Services; Overlay or otherwise modify the Services or their appearance (such as by inserting elements into the Services or removing, covering, or obscuring an advertisement included on the Services); Interfere with the operation of, or place an unreasonable load on, the Services (e.g., spam, denial of service attack, viruses, manipulating algorithms); Violate the Professional Community Policies , certain third party terms where applicable, or any additional terms concerning a specific Service that are provided when you sign up for or start using such Service; Use our Services to do anything that is unlawful, misleading, discriminatory, fraudulent or deceitful (e.g. manipulated media that wrongfully depicts a person saying or doing something they did not say or do); and/or Misuse our reporting or appeals process, including by submitting duplicative, fraudulent or unfounded reports, complaints or appeals. 9. Complaints Regarding Content Contact information for complaints about content provided by our Members. We ask that you report content and other information that you believe violates your rights (including intellectual property rights), our Professional Community Policies or otherwise violates this Contract or the law. To the extent we can under law, we may remove or restrict access to content, features, services, or information, including if we believe that it’s reasonably necessary to avoid harm to LinkedIn or others, violates the law or is reasonably necessary to prevent misuse of our Services. We reserve the right to take action against serious violations of this Contract, including by implementing account restrictions for significant violations. We respect the intellectual property rights of others. We require that information shared by Members be accurate and not in violation of the intellectual property rights or other rights of third parties. We provide a policy and process for complaints concerning content shared,&nbsp;and/or trademarks used, by our Members. 10. How To Contact Us Our Contact information. Our Help Center also provides information about our Services. For general inquiries, you may contact us&nbsp; online . For legal notices or service of process, you may write us at these&nbsp; addresses . LinkedIn &copy; 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://www.thoughtworks.com/zh-cn
思特沃克(西安)数字科技有限公司 | 全球软件及咨询公司 | Thoughtworks Enable javascript in your browser for better experience. Need to know to enable it? Go here. 菜单 关闭 China | Chinese Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English 搜索 关闭 Ask Tai China | Chinese Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English 产品及服务 概况 解决方案 用户体验 产品创新 数据现代化 扩展AI AI 优先的软件工程变革 企业平台现代化 数字化应用管理与运营 合作伙伴 概况 行业 汽车企业 公共服务机构 能源 媒体和出版业 零售业和电商 金融和保险企业 非营利性组织 旅游业和运输业 医疗行业和生命科学 公用事业 制造与工程 洞见 概况 数字出版物和工具 技术雷达 针对当今科技领域发展的前沿指南 视野 服务数字读者的出版物 解码器 业务主管的A-Z技术指南 科技棱镜 聚焦技术引领的商业变革 所有洞见 文章 助力商业的专业洞见 博客 关于战略、人工智能, 工程、技术生涯等方面的专家建议 书籍 浏览更多我们的书籍 播客 分析商业和技术最新趋势的精彩对话 直播 探索最新科技热点,深度分析技术与商业 工程学 加入我们 概况 申请流程 面试准备 咨询师生涯 了解作为一名Thoughtworker是怎样的体验 毕业生和变换职业者 正确开启技术生涯 搜索工作 在您所在的区域寻找正在招聘的岗位 保持联系 订阅我们的月度新闻简报 学习与发展 了解更多我们如何支持员工的职业发展 关于我们 概况 联系我们 搜索 关闭 Ask Tai 视野: 36期 | May 2025 人工智能优先软件工程:开发、演进 阅读最新一期/ 体验・软件工程・人工智能 产品及服务 深度 合作 , 创造卓越 合作伙伴 前一页 下一页 暂停 播放 1 Hero3 Hero1 体验・软件工程・人工智能   我们是一家全球技术咨询公司,融合体验、软件工程和人工智能专长,助力企业实现非凡价值。   30 多年来,我们秉持创新文化与卓越技术,帮助客户强化企业系统、灵活扩展业务,并打造流畅的数字化体验。   我们致力于解决客户最关键的挑战,结合 AI 与人类智慧,将大胆构想变为现实。 关注我们 洞见 Publication 提升财富管理体验 阅读更多 Article 开发者门户:实现投资收益最大化不可不知的十件事 阅读更多 Blog 重现数据迁移之旅 阅读更多 Publication 技术雷达第33期 阅读更多 我们的客户 合作伙伴 我们一起创造非凡影响   科技行业的工作可能重复而不复杂。但是,谁愿意仅仅满足于沉闷和乏味呢? 绝对不是我们,也不是你。30年来,Thoughtworkers 一直被鼓励打破陈规,因为单纯的日复一日从开始就不适合我们。值得骄傲的是,宝贵的反馈和意见使我们成为了 Great Place to Work-Certified™ 认证企业。 因此,如果您想通过共同产生非凡的影响来改变您的生活、职业和世界,这里将会是您的绝佳选择。 与我们一起探索职业发展 最新洞见 温馨提示:此内容或许无法匹配您所选的语言 Article AGIC和软件生命周期:远不止是编码辅助 阅读更多 Report 进化型组织重塑未来 阅读报告 Publication 利用GenAI加速产品创新 阅读完整报告 White paper 汽车直销解决方案白皮书 了解更多 Article Data Mesh 的商业案例 阅读全文 转变您的数字化之旅 联系我们 公司 关于我们 产品及服务 合作伙伴 我们的客户 新闻 多元、公平与包容 求职 联系我们 洞见 偏好中心 文章 博客 书籍 播客 网站资讯 隐私政策 无障碍声明 行为准则 关注我们 陕ICP备2025079759号 © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:14
https://www.thoughtworks.com/en-gb
Thoughtworks United Kingdom | A leading technology consultancy | Thoughtworks United Kingdom Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close United Kingdom | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai United Kingdom | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay connected Sign up for our monthly newsletter Benefits See how we take care of our people Learning and Development Explore how we support career growth About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights Report The agentic AI advantage: Fact, fiction and the future Explore our latest report with WIRED Tool Assess your AI readiness Get started Blog Macro trends in the tech industry Read now Report Technology and trends sharing SDVs Read SDV pulse now Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy UK tax strategy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:14
https://www.thoughtworks.com
Thoughtworks: A leading technology consultancy | Thoughtworks Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close Worldwide | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai Worldwide | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Learning and Development Explore how we support career growth Benefits See how we take care of our people About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights News and stories We&#39;ve achieved the AWS Agentic AI Specialization to accelerate autonomous enterprise innovation Learn more Tool Assess your AI readiness Get started Blog Mainframe modernization: An illustrated guide Read now Publication Catch the latest Tech Radar Explore this edition Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:14
https://www.thoughtworks.com/de-de
Thoughtworks Deutschland | Eine globale Technologieberatung | Thoughtworks Germany Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menü schließen Germany | Deutsch Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English Suchen schließen Ask Tai Germany | Deutsch Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English Unsere Services Übersicht Lösungen Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Unsere Kunden Übersicht Branchen Automotive Öffentlicher Sektor Energie Medien und Verlagswelt Handel und E-Commerce Banken und Versicherungen Not-for-profit Reise und Transport Healthcare und Life Sciences Versorgung Industrie und Maschinenbau Insights Übersicht Digitale Veröffentlichungen und Tools Technology Radar Ein meinungsstarker Guide zur aktuellen Technologielandschaft Perspectives Unsere Publikation für digitale Vordenker:innen Decoder Der Technologie-Guide für Business-Entscheider:innen Looking Glass Technologiegesteuerte Unternehmensveränderungen im Fokus Alle Insights Artikel Expertenwissen für Ihr Unternehmen Blogs Expertise zu Design, Softwareentwicklung, AI, Karriere in der IT und vieles mehr Bücher Stöbern Sie durch unsere umfangreiche Bibliothek Podcasts Spannende Gespräche über das Neueste aus Business und Technologie Engineering Karriere Übersicht Bewerbungsprozess Finde heraus, was dich in unserem Bewerbungsprozess erwartet. Consultant life Erfahre mehr über deinen Alltag bei Thoughtworks. Graduates and Career Changers Thoughtworks University: Preparing future leaders Stellenangebote Finde offene Stellen in deiner Region. In Kontakt bleiben Abonniere unsere monatlichen Updates. Learning &amp; Development Finde heraus, wie wir berufliche Entwicklung fördern Unsere Benefits Erfahre, wie wir unsere Mitarbeiter:innen unterstützen Über uns Übersicht Kontakt Suchen schließen Ask Tai Technology Radar volume 33 An opinionated guide to technology frontiers Explore latest edition Design. Engineering. AI. Wir schaffen außergewöhnlichen Impact – durch die Verknüpfung von Design, Softwareentwicklung und KI-Expertise Unsere Lösungen Perspectives: Edition #36 | May 2025 AI-first software engineering: Development, evolved  Read full report Eine neue Ära der Modernisierung Die Reise zur Wertschöpfung beschleunigen Mehr erfahren Zurück Weiter Anhalten Wiedergabe 3 4 2 1 Design. Engineering. AI   Wir sind eine globale Technologieberatung, die durch Verknüpfung von Design, Softwareentwicklung und KI-Expertise außergewöhnlichen Impact schafft.   Seit über 30 Jahren unterstützen wir Kunden durch unsere einzigartige Innovationskultur und technologische Exzellenz dabei, ihre Unternehmenssysteme zu stärken, flexibel zu skalieren und nahtlose digitale Erlebnisse zu entwickeln.   Wir meistern die komplexesten Herausforderungen unserer Kunden, indem wir die Stärke künstlicher Intelligenz mit menschlicher Kreativität verbinden. So schaffen wir aus visionären Ideen greifbare Erfolge. Wie können wir Ihnen helfen? Neueste Inhalte Report Benchmark your digital and AI readiness and propel your organization forward Mehr erfahren Generative AI KI-gestützte digitale Produkte Zum Workshop anmelden White paper Software-Projekte effektiv umsetzen und skalieren Herunterladen Report The Agentic AI advantage Explore now Wir schaffen außergewöhnlichen Impact für unsere Kunden Kundenbeispiele Data strategy Bosch: Schlanke und anpassungsfähige Datenplattform und Daten-Pipelines für effiziente grüne Energie Mehr erfahren Digital transformation TBC Bank: Digitale Transformation: Von organisatorischer Komplexität zu flexibler Wertschöpfung Mehr erfahren AI and ML BMW Group: Mit einem führenden Automobilhersteller Connected AI zum Leben erwecken Mehr erfahren View more View less Partnerschaften Bereit für eine neue Herausforderung? Jobs in der Technologiebranche können gewöhnlich sein. Clock in, clock out – repeat. Aber wer will sich schon mit dem Monotonen und Ereignislosen zufriedengeben? Wir ganz bestimmt nicht und du sicherlich auch nicht. Seit mehr als 30 Jahren werden Thoughtworker:innen dazu ermutigt, meinungsstark zu sein und den Status quo zu hinterfragen. Ihr wertvolles Feedback und ihr Engagement haben uns dabei geholfen, ein von Great Place to Work™ zertifiziertes Unternehmen zu werden. Werde jetzt Teil unseres Teams und schaffe gemeinsam mit uns einen außergewöhnlichen Impact auf die Tech-Welt. Nach Jobs suchen Wann starten Sie mit uns Ihre digitale Transformation? Kontaktieren Sie uns Unternehmen Über uns Unsere Services Partnerschaften Unsere Kunden Neuigkeiten Vielfalt, Gleichberechtigung, Inklusion Karriere Kontakt Insights E-Mail-Präferenzen Artikel Blogs Bücher Podcasts Site info Impressum Datenschutzrichtlinie Erklärung zur Barrierefreiheit Modern slavery statement Verhaltenskodex Integritäts-Helpline Folgen Sie uns © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:14
https://www.linkedin.com/legal/privacy-policy?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Ffeed%2Fhashtag%2Fmcp&trk=registration-frontend_join-form-privacy-policy
LinkedIn Privacy Policy Skip to main content User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws User Agreement Summary of User Agreement Privacy Policy Professional Community Policies Cookie Policy Copyright Policy Regional Info EU Notice California Privacy Disclosure U.S. State Privacy Laws Privacy Policy Effective November 3, 2025 Your Privacy Matters LinkedIn’s mission is to connect the world’s professionals to allow them to be more productive and successful. Central to this mission is our commitment to be transparent about the data we collect about you, how it is used and with whom it is shared. This Privacy Policy applies when you use our Services (described below). We offer our users choices about the data we collect, use and share as described in this Privacy Policy,&nbsp; Cookie Policy ,&nbsp;Settings and our&nbsp; Help Center. Key Terms Choices  Settings &nbsp;are available to Members of LinkedIn and Visitors are provided&nbsp;separate&nbsp;controls.&nbsp; Learn More . Table of Contents Data We Collect How We Use Your Data How We Share Information Your Choices and Obligations Other Important Information Introduction We are a social network and online platform for professionals. People use our Services to find and be found for business opportunities, to connect with others and find information. Our Privacy Policy applies to any Member or Visitor to our Services. Our registered users (“Members”) share their professional identities, engage with their network, exchange knowledge and professional insights, post and view relevant content, learn and develop skills, and find business and career opportunities. Content and data on some of our Services is viewable to non-Members (“Visitors”). We use the term “Designated Countries” to refer to countries in the European Union (EU), European Economic Area (EEA), and Switzerland. Members and Visitors located in the Designated Countries or the UK can review additional information in our European Regional Privacy Notice . Services This Privacy Policy, including our Cookie Policy applies to your use of our Services. This Privacy Policy applies to LinkedIn.com, LinkedIn-branded apps, and other LinkedIn-branded sites, apps, communications and services offered by LinkedIn (“Services”), including off-site Services, such as our ad services and the “Apply with LinkedIn” and “Share with LinkedIn” plugins, but excluding services that state that they are offered under a different privacy policy. For California residents, additional disclosures required by California law may be found in our&nbsp; California Privacy Disclosure . Data Controllers and Contracting Parties If you are in the “Designated Countries”, LinkedIn Ireland Unlimited Company (“LinkedIn Ireland”) will be the controller of your personal data provided to, or collected by or for, or processed in connection with our Services. If you are outside of the Designated Countries, LinkedIn Corporation will be the controller of (or business responsible for) your personal data provided to, or collected by or for, or processed in connection with our Services. As a Visitor or Member of our Services, the collection, use and sharing of your personal data is subject to this Privacy Policy and other documents referenced in this Privacy Policy, as well as updates. Change Changes to the Privacy Policy apply to your use of our Services after the “effective date.” LinkedIn (“we” or “us”) can modify this Privacy Policy, and if we make material changes to it, we will provide notice through our Services, or by other means, to provide you the opportunity to review the changes before they become effective. If you object to any changes, you may&nbsp; close your account. You acknowledge that your continued use of our Services after we publish or send a notice about our changes to this Privacy Policy means that the collection, use and sharing of your personal data is subject to the updated Privacy Policy, as of its effective date. 1. Data We Collect 1.1 Data You Provide To Us You provide data to create an account with us. Registration To create an account you need to provide data including your name, email address and/or mobile number, general location (e.g., city), and a password. If you register for a premium Service, you will need to provide payment (e.g., credit card) and billing information. You create your LinkedIn profile (a complete profile helps you get the most from our Services). Profile You have&nbsp; choices &nbsp;about the information on your profile, such as your education, work experience, skills, photo,&nbsp; city or area , endorsements, and optional verifications of information on your profile (such as verifications of your identity or workplace). You don’t have to provide additional information on your profile; however, profile information helps you to get more from our Services, including helping recruiters and business opportunities find you. It’s your choice whether to include&nbsp; sensitive information &nbsp;on your profile and to make that sensitive information public. Please do not post or add personal data to your profile that you would not want to be publicly available. You may give other data to us, such as by syncing your calendar. Posting and Uploading We collect personal data from you when you provide, post or upload it to our Services, such as when you fill out a form, (e.g., with demographic data or&nbsp;salary), respond to a survey, or submit a resume or fill out a job application on our Services. If you sync your calendars with our Services, we will collect your calendar meeting information to keep growing your network by suggesting connections for you and others, and by providing information about events, e.g. times, places, attendees and contacts. You don’t have to post or upload personal data; though if you don’t, it may limit your ability to grow and engage with your network over our Services. 1.2 Data From Others Others may post or write about you. Content and News You and others may post content that includes information about you (as part of articles, posts, comments, videos) on our Services. We also may collect public information about you, such as professional-related news and accomplishments, and make it available as part of our Services, including, as permitted by your settings, in notifications to others of&nbsp; mentions in the news . Others may sync their calendar with our Services Contact and Calendar Information We receive personal data (including contact information) about you when others import or sync their calendar with our Services, associate their contacts with Member profiles, scan and upload business cards, or send messages using our Services (including invites or connection requests). If you or others opt-in to sync email accounts with our Services, we will also collect “email header” information that we can associate with Member profiles. Customers and partners may provide data to us. Partners We receive personal data (e.g., your job title and work email address) about you when you use the services of our customers and partners, such as employers or prospective employers and applicant tracking systems providing us job application data. Related Companies and Other Services We receive data about you when you use some of the other services provided by us or our&nbsp; Affiliates , including Microsoft. For example, you may choose to send us information about your contacts in Microsoft apps and services, such as Outlook, for improved professional networking activities on our Services or we may receive information from Microsoft about your engagement with their sites and services. 1.3 Service Use We log your visits and use of our Services, including mobile apps. We log usage data when you visit or otherwise use our Services, including our sites, app and platform technology, such as when you view or click on content (e.g., learning video) or ads (on or off our sites and apps), perform a search, install or update one of our mobile apps, share articles or apply for jobs. We use log-ins, cookies,&nbsp; device information &nbsp;and internet protocol (“IP”) addresses to identify you and log your use. 1.4 Cookies and Similar Technologies We collect data through cookies and similar technologies. As further described in our&nbsp; Cookie Policy , we use cookies and similar technologies (e.g., pixels and ad tags) to collect data (e.g., device IDs) to recognize you and your device(s) on, off and across different services and devices where you have engaged with our Services. We also allow some others to use cookies as described in our Cookie Policy. If you are outside the Designated Countries, we also collect (or rely on others, including Microsoft, who collect) information about your device where you have not engaged with our Services (e.g., ad ID, IP address, operating system and browser information) so we can provide our Members with relevant ads and better understand their effectiveness.&nbsp; Learn more . You can&nbsp; opt out &nbsp;from our use of data from cookies and similar technologies that track your behavior on the sites of others for ad targeting and other ad-related purposes. For Visitors,&nbsp; the controls are here . 1.5 Your Device and Location We receive data through cookies and similar technologies When you visit or leave our Services (including some plugins and our cookies or similar technology on the sites of others), we receive the URL of both the site you came from and the one you go to and the time of your visit. We also get information about your network and device (e.g., IP address, proxy server, operating system, web browser and add-ons, device identifier and features, cookie IDs and/or ISP, or your mobile carrier). If you use our Services from a mobile device, that device will send us data about your location based on your phone settings. We will ask you to opt-in before we use GPS or other&nbsp;tools&nbsp;to identify your precise location. 1.6 Communications If you communicate through our Services, we learn about that. We collect information about you when you communicate with others through our Services (e.g., when you send, receive, or engage with messages, events, or connection requests, including our marketing communications). This may include information that indicates who you are communicating with and when. We also use&nbsp; automated systems to support and protect our site. For example, we use such systems to suggest possible responses to messages and to manage or block content that violates our User Agreement or&nbsp; Professional Community Policies . 1.7 Workplace and School Provided Information When your organization (e.g., employer or school) buys a premium Service for you to use, they give us data about you. Others buying our Services for your use, such as your employer or your school, provide us with personal data about you and your eligibility to use the Services that they purchase for use by their workers, students or alumni. For example, we will get contact information for “ LinkedIn Page ” (formerly Company Page) administrators and for authorizing users of our premium Services, such as our recruiting, sales or learning products. 1.8 Sites and Services of Others We get data when you visit sites that include our ads, cookies or plugins or when you log-in to others’ services with your LinkedIn account. We receive information about your visits and interaction with services provided by others when you log-in with LinkedIn or visit others’ services that include some of our plugins (such as “Apply with LinkedIn”) or our ads, cookies or similar technologies. 1.9 Other We are improving our Services, which means we get new data and create new ways to use data. Our Services are dynamic, and we often introduce new features, which may require the collection of new information. If we collect materially different personal data or materially change how we collect, use or share your data, we will notify you and may also modify this Privacy Policy. Key Terms Affiliates Affiliates are companies controlling, controlled by or under common control with us, including, for example, LinkedIn Ireland, LinkedIn Corporation, LinkedIn Singapore and Microsoft Corporation or any of its subsidiaries (e.g., GitHub, Inc.). 2. How We Use Your Data We use your data to provide, support, personalize and develop our Services. How we use your personal data will depend on which Services you use, how you use those Services and the choices you make in your&nbsp; settings . We may use your personal data to improve, develop, and provide products and Services, develop and train artificial intelligence (AI) models, develop, provide, and personalize our Services, and gain insights with the help of AI, automated systems, and inferences, so that our Services can be more relevant and useful to you and others. You can review LinkedIn's Responsible AI principles here and learn more about our approach to generative AI here . Learn more about the inferences we may make, including as to your age and gender and how we use them. 2.1 Services Our Services help you connect with others, find and be found for work and business opportunities, stay informed, get training and be more productive. We use your data to authorize access to our Services and honor your settings. Stay Connected Our Services allow you to stay in touch and up to date with colleagues, partners, clients, and other professional contacts. To do so, you can “connect” with the professionals who you choose, and who also wish to “connect” with you. Subject to your and their&nbsp; settings , when you connect with other Members, you will be able to search each others’ connections in order to exchange professional opportunities. We use data about you (such as your profile, profiles you have viewed or data provided through address book uploads or partner integrations) to help others find your profile, suggest connections for you and others (e.g. Members who share your contacts or job experiences) and enable you to invite others to become a Member and connect with you. You can also opt-in to allow us to use your precise location or proximity to others for certain tasks (e.g. to suggest other&nbsp;nearby&nbsp;Members for you to connect with, calculate the commute to a new job, or notify your connections that you are at a professional event). It is your choice whether to invite someone to our Services, send a connection request, or allow another Member to become your connection. When you invite someone to connect with you, your invitation will include your network and basic profile information (e.g., name, profile photo, job title, region). We will send invitation reminders to the person you invited. You can&nbsp; choose &nbsp;whether or not to share your own list of connections with your connections. Visitors have&nbsp; choices &nbsp;about how we use their data. Stay Informed Our Services allow you to stay informed about news, events and ideas regarding professional topics you care about, and from professionals you respect. Our Services also allow you to improve your professional skills, or learn new ones. We use the data we have about you (e.g., data you provide, data we collect from your engagement with our Services and inferences we make from the data we have about you), to personalize our Services for you, such as by recommending or ranking relevant content and conversations on our Services. We also use the data we have about you to suggest skills you could add to your profile and skills that you might need to pursue your next opportunity. So, if you let us know that you are interested in a new skill (e.g., by watching a learning video), we will use this information to personalize content in your feed, suggest that you follow certain Members on our site, or suggest related learning content to help you towards that new skill. We use your content, activity and other data, including your name and photo, to provide notices to your network and others. For example, subject to your&nbsp; settings , we may notify others that you have updated your profile, posted content, took a&nbsp; social action , used a feature, made new connections or were&nbsp; mentioned in the news . Career Our Services allow you to explore careers, evaluate educational opportunities, and seek out, and be found for, career opportunities. Your profile can be found by those looking to hire (for a job or a&nbsp; specific task ) or be hired by you. We will use your data to recommend jobs and show you and others relevant professional contacts (e.g., who work at a company, in an industry, function or location or have certain skills and connections). You can signal that you are&nbsp; interested &nbsp;in changing jobs and share information with recruiters. We will use your data to recommend jobs to you and you to recruiters. We may use automated systems to provide content and recommendations to help make our Services more relevant to our Members, Visitors and customers. Keeping your profile accurate and up-to-date may help you better connect to others and to opportunities through our Services. Productivity Our Services allow you to collaborate with colleagues, search for potential clients, customers, partners and others to do business with. Our Services allow you to communicate with other Members and schedule and prepare meetings with them. If your&nbsp; settings &nbsp;allow, we scan messages to provide “bots” or similar tools that facilitate tasks such as scheduling meetings, drafting responses, summarizing messages or recommending next steps.&nbsp; Learn more . 2.2 Premium Services Our premium Services help paying users to search for and contact Members through our Services, such as searching for and contacting job candidates, sales leads and co-workers, manage talent and promote content. We sell premium Services that provide our customers and subscribers with customized-search functionality and tools (including messaging and activity alerts) as part of our talent, marketing and sales solutions. Customers can export limited information from your profile, such as name, headline, current company, current title, and general location (e.g., Dublin), such as to manage sales leads or talent, unless you&nbsp; opt-out . We do not provide contact information to customers as part of these premium Services without your consent. Premium Services customers can store information they have about you in our premium Services, such as a resume or contact information or sales history. The data stored about you by these customers is subject to the policies of those customers. Other enterprise Services and features that use your data include&nbsp; TeamLink &nbsp;and LinkedIn Pages (e.g., content analytics and followers). 2.3 Communications We contact you and enable communications between Members. We offer settings to control what messages you receive and how often you receive some types of messages. We will contact you through email, mobile phone, notices posted on our websites or apps, messages to your LinkedIn inbox, and other ways through our Services, including text messages and push notifications. We will send you messages about the availability of our Services, security, or other service-related issues. We also send messages about how to use our Services, network updates, reminders, job suggestions and promotional messages from us and our partners. You may change your communication&nbsp; preferences &nbsp;at any time. Please be aware that you cannot opt out of receiving service messages from us, including security and legal notices. We also enable&nbsp; communications &nbsp;between you and others through our Services, including for example&nbsp; invitations ,&nbsp; InMail ,&nbsp; groups &nbsp;and&nbsp; messages &nbsp;between connections. 2.4 Advertising We serve you tailored ads both on and off our Services. We offer you choices regarding personalized ads, but you cannot opt-out of seeing non-personalized ads. We target (and measure the performance of) ads to Members, Visitors and others both on and off our Services directly or through a variety of&nbsp;partners, using the following data, whether separately or combined: Data collected by advertising technologies on and off our Services using pixels, ad tags (e.g., when an advertiser installs a LinkedIn tag on their website), cookies, and other device identifiers; Member-provided information (e.g., profile, contact information, title and industry); Data from your use of our Services (e.g., search history, feed, content you read, who you follow or is following you, connections,&nbsp; groups &nbsp;participation, page visits, videos you watch, clicking on an ad, etc.), including as described in Section 1.3; Information from advertising partners , vendors and&nbsp; publishers ; and Information inferred from data described above (e.g., using job titles from a profile to infer industry, seniority, and compensation bracket; using graduation dates to infer age or using first names or pronoun usage to infer gender; using your feed activity to infer your interests; or using device data to recognize you as a Member). Learn more about the inferences we make and how they may be used for advertising. Learn more about the ad technologies we use and our advertising services and partners. You can learn more about our compliance with laws in the Designated Countries or the UK in our European Regional Privacy Notice . We will show you ads called&nbsp; sponsored content &nbsp;which look similar to non-sponsored content, except that they are labeled as advertising (e.g., as “ad” or “sponsored”). If you take a social action (such as like, comment or share) on these ads, your action is associated with your name and viewable by others, including the advertiser. Subject to your settings , if you take a social action on the LinkedIn Services,&nbsp;that action&nbsp;may be mentioned with related ads. For example, when you like a company we may include your name and photo when their sponsored content is shown. Ad Choices You have choices regarding our uses of certain categories of data to show you more relevant ads. Member settings can be found here . For Visitors, the setting is&nbsp;here . Info to Ad Providers We do not share your personal data with any non-Affiliated third-party advertisers or ad networks except for: (i) hashed IDs or device identifiers (to the extent they are personal data in some countries); (ii) with your separate permission (e.g., in a lead generation form) or (iii) data already visible to any users of the Services (e.g., profile). However, if you view or click on an ad on or off our Services, the ad provider will get a signal that someone visited the page that displayed the ad, and they may, through the use of mechanisms such as cookies, determine it is you. Advertising partners can associate personal data collected by the advertiser directly from you with hashed IDs or device identifiers received from us. We seek to contractually require such advertising partners to obtain your explicit, opt-in consent before doing so where legally required, and in such instances, we take steps to ensure that consent has been provided before processing data from them. 2.5 Marketing We promote our Services to you and others. In addition to advertising our Services, we use Members’ data and content for invitations and communications promoting membership and network growth, engagement and our Services, such as by showing your connections that you have used a feature on our Services. 2.6 Developing Services and Research We develop our Services and conduct research Service Development We use data, including public feedback, to conduct&nbsp; research &nbsp;and development for our Services in order to provide you and others with a better, more intuitive and personalized experience, drive membership growth and engagement on our Services, and help connect professionals to each other and to economic opportunity. Other Research We seek to create economic opportunity for Members of the global workforce and to help them be more productive and successful. We use the personal data available to us to research social, economic and workplace trends, such as jobs availability and skills needed for these&nbsp; jobs &nbsp;and policies that help bridge the gap in various industries and geographic areas. In some cases, we work with trusted third parties to perform this research, under&nbsp; controls &nbsp;that are designed to protect your privacy. We may also make public data available to researchers to enable assessment of the safety and legal compliance of our Services. We publish or allow others to publish economic insights, presented as aggregated data rather than personal data. Surveys Polls and surveys are conducted by us and others through our Services. You are not obligated to respond to polls or surveys, and you have choices about the information you provide. You may&nbsp; opt-out &nbsp;of survey invitations. 2.7 Customer Support We use data to help you and fix problems. We use data (which can include your communications) to investigate, respond to and resolve complaints and for Service issues (e.g., bugs). 2.8 Insights That Do Not Identify You We use data to generate insights that do not identify you. We use your data to perform analytics to produce and share insights that do not identify you. For example, we may use your&nbsp;data&nbsp;to generate statistics about our Members, their profession or industry, to calculate ad impressions served or clicked on (e.g., for basic business reporting to support billing and budget management or, subject to your settings , for reports to advertisers who may use them to inform their advertising campaigns), to show Members' information about engagement with a post or LinkedIn Page , to publish visitor demographics for a Service or create demographic workforce insights, or to understand usage of our services. 2.9 Security and Investigations We use data for security, fraud prevention and investigations. We and our Affiliates, including Microsoft, may use your data (including your communications) for security purposes or to prevent or investigate possible fraud or other violations of the law, our&nbsp; User Agreement &nbsp;and/or attempts to harm our Members, Visitors, company, Affiliates, or others. Key Terms Social Action E.g.&nbsp;like, comment, follow,&nbsp;share&nbsp; Partners Partners include ad networks, exchanges and&nbsp;others&nbsp; 3. How We Share Information 3.1 Our Services Any data that you include on your profile and any content you post or social action (e.g., likes, follows, comments, shares) you take on our Services will be seen by others, consistent with your settings. Profile Your profile is fully visible to all Members and customers of our Services. Subject to your&nbsp; settings , it can also be visible to others on or off of our Services (e.g., Visitors to our Services or users of third-party search tools). As detailed in our&nbsp; Help Center , your settings, degree of connection with the viewing Member, the subscriptions they may have, their&nbsp; usage of our Services , access channels and search types (e.g., by name or by keyword) impact the availability of your profile and whether they can view certain fields in your profile. Posts, Likes, Follows, Comments, Messages Our Services allow viewing and sharing information including through posts, likes, follows and comments. When you share an article or a post (e.g., an update, image, video or article) publicly it can be viewed by everyone and re-shared anywhere (subject to your&nbsp; settings ). Members, Visitors and others will be able to find and see your publicly-shared content, including your name (and photo if you have provided one). In a&nbsp; group , posts are visible to others according to group type. For example, posts in private groups are visible to others in the group and posts in public groups are visible publicly. Your membership in groups is public and part of your profile, but you can change visibility in your&nbsp; settings . Any information you share through companies’ or other organizations’ pages on our Services will be viewable by those organizations and others who view those pages' content. When you follow a person or organization, you are visible to others and that “page owner” as a follower. We let senders know when you act on their message, subject to your&nbsp; settings &nbsp;where applicable. Subject to your&nbsp; settings , we let a Member know when you view their profile. We also give you choices about letting organizations know when you've viewed their Page. When you like or re-share or comment on another’s content (including ads), others will be able to view these “social actions” and associate it with you (e.g., your name, profile and photo if you provided it). Your employer can see how you use Services they provided for your work (e.g. as a recruiter or sales agent) and related information. We will not show them your job searches or personal messages. Enterprise Accounts Your employer may offer you access to our enterprise Services such as Recruiter, Sales Navigator, LinkedIn Learning or our advertising Campaign Manager. Your employer can review and manage your use of such enterprise Services. Depending on the enterprise Service, before you use such Service, we will ask for permission to share with your employer relevant data from your profile or use of our non-enterprise Services. For example, users of&nbsp;Sales Navigator&nbsp;will be asked to share their “social selling index”, a score calculated in part based on their personal account activity. We understand that certain activities such as job hunting and personal messages are sensitive, and so we do not share those with your employer unless you choose to share it with them through our Services (for example, by applying for a new position in the same company or mentioning your job hunting in a message to a co-worker through our Services). Subject to your&nbsp; settings , when you use workplace tools and services (e.g., interactive employee directory tools) certain of your data may also be made available to your employer or be connected with information we receive from your employer to enable these tools and services. 3.2 Communication Archival Regulated Members may need to store communications outside of our Service. Some Members (or their employers) need, for legal or professional compliance, to archive their communications and social media activity, and will use services of others to provide these archival services. We enable archiving of messages by and to those Members outside of our Services. For example, a financial advisor needs to archive communications with her clients through our Services in order to maintain her professional financial advisor license. 3.3 Others’ Services You may link your account with others’ services so that they can look up your contacts’ profiles, post your shares on such platforms, or enable you to start conversations with your connections on such platforms. Excerpts from your profile will also appear on the services of others. Subject to your&nbsp; settings , other services may look up your profile. When you opt to link your account with other services, personal data (e.g., your name, title, and company) will become available to them. The sharing and use of that personal data will be described in, or linked to, a consent screen when you opt to link the accounts. For example, you may link your Twitter or WeChat account to share content from our Services into these other services, or your email provider may give you the option to upload your LinkedIn contacts into its own service. Third-party services have their own privacy policies, and you may be giving them permission to use your data in ways we would not. You may&nbsp; revoke &nbsp;the link with such accounts. The information you make available to others in our Services (e.g., information from your profile, your posts, your engagement with the posts, or message to Pages) may be available to them on other services . For example, search tools, mail and calendar applications, or talent and lead managers may show a user limited profile data (subject to your settings ), and social media management tools or other platforms may display your posts. The information retained on these services may not reflect updates you make on LinkedIn. 3.4 Related Services We share your data across our different Services and LinkedIn affiliated entities. We will share your personal data with our Affiliates to provide and develop our Services. For example, we may refer a query to Bing in some instances, such as where you'd benefit from a more up to date response in a chat experience. Subject to our&nbsp; European Regional Privacy Notice , we may also share with our Affiliates, including Microsoft, your (1) publicly-shared content (such as your public LinkedIn posts) to provide or develop their services and (2) personal data to improve, provide or develop their advertising services. Where allowed , we may combine information internally across the different Services covered by this Privacy Policy to help our Services be more relevant and useful to you and others. For example, we may personalize your feed or job recommendations based on your learning history. 3.5 Service Providers We may use others to help us with our Services. We use others to help us provide our Services (e.g., maintenance, analysis, audit, payments, fraud detection, customer support, marketing and development). They will have access to your information (e.g., the contents of a customer support request) as reasonably necessary to perform these tasks on our behalf and are obligated not to disclose or use it for other purposes. If you purchase a Service from us, we may use a payments service provider who may separately collect information about you (e.g., for fraud prevention or to comply with legal obligations). 3.6 Legal Disclosures We may need to share your data when we believe it’s required by law or to help protect the rights and safety of you, us or others. It is possible that we will need to disclose information about you when required by law, subpoena, or other legal process or if we have a good faith belief that disclosure is reasonably necessary to (1) investigate, prevent or take action regarding suspected or actual illegal activities or to assist government enforcement agencies; (2) enforce our agreements with you; (3) investigate and defend ourselves against any third-party claims or allegations; (4) protect the security or integrity of our Services or the products or services of our Affiliates (such as by sharing with companies facing similar threats); or (5) exercise or protect the rights and safety of LinkedIn, our Members, personnel or others. We attempt to notify Members about legal demands for their personal data when appropriate in our judgment, unless prohibited by law or court order or when the request is an emergency. We may dispute such demands when we believe, in our discretion, that the requests are overbroad, vague or lack proper authority, but we do not promise to challenge every demand. To learn more see our&nbsp; Data Request Guidelines &nbsp;and&nbsp; Transparency Report . 3.7 Change in Control or Sale We may share your data when our business is sold to others, but it must continue to be used in accordance with this Privacy Policy. We can also share your personal data as part of a sale, merger or change in control, or in preparation for any of these events. Any other entity which buys us or part of our business will have the right to continue to use your data, but only in the manner set out in this Privacy Policy unless you agree otherwise. 4. Your Choices &amp; Obligations 4.1 Data Retention We keep most of your personal data for as long as your account is open. We generally retain your personal data as long as you keep your account open or as needed to provide you Services. This includes data you or others provided to us and data generated or inferred from your use of our Services. Even if you only use our Services when looking for a new job every few years, we will retain your information and keep your profile open, unless you close your account. In some cases we choose to retain certain information (e.g., insights about Services use) in a depersonalized or aggregated form. 4.2 Rights to Access and Control Your Personal Data You can access or delete your personal data. You have many choices about how your data is collected, used and shared. We provide many&nbsp; choices &nbsp;about the collection, use and sharing of your data, from deleting or correcting data you include in your&nbsp; profile &nbsp;and controlling the visibility of your&nbsp; posts &nbsp;to advertising&nbsp; opt-outs &nbsp;and&nbsp; communication &nbsp;controls. We offer you&nbsp; settings &nbsp;to control and manage the personal data we have about you. For personal data that we have about you, you can: Delete Data :&nbsp;You can ask us to erase or delete all or some of your personal data (e.g., if it is no longer necessary to provide Services to you). Change or Correct Data : You can edit some of your personal data through your account. You can also ask us to change, update or fix your data in certain cases, particularly if it’s inaccurate. Object to, or Limit or Restrict, Use of Data :&nbsp;You can ask us to stop using all or some of your personal data (e.g., if we have no legal right to keep using it) or to limit our use of it (e.g., if your personal data is inaccurate or unlawfully held). Right to Access and/or Take Your Data :&nbsp;You can ask us for a copy of your personal data and can ask for a copy of personal data you provided in machine readable form. Visitors can learn more about how to make these requests here . You may also contact us using the contact information below, and we will consider your request in accordance with applicable laws. Residents in the&nbsp; Designated Countries and the UK ,&nbsp;and&nbsp; other regions ,&nbsp;may have additional rights under their laws. 4.3 Account Closure We keep some of your data even after you close your account. If you choose to close your&nbsp; LinkedIn &nbsp;account, your personal data will generally stop being visible to others on our Services within 24 hours. We generally delete closed account information within 30 days of account closure, except as noted below. We retain your personal data even after you have closed your account if reasonably necessary to comply with our legal obligations (including law enforcement requests), meet regulatory requirements, resolve disputes, maintain security, prevent fraud and abuse (e.g., if we have&nbsp; restricted &nbsp;your account for breach of our&nbsp; Professional Community Policies ), enforce our User Agreement, or fulfill your request to "unsubscribe" from further messages from us. We will retain de-personalized information after your account has been closed. Information you have shared with others (e.g., through InMail, updates or group posts) will remain visible after you close your account or delete the information from your own profile or mailbox, and we do not control data that other Members have copied out of our Services. Groups content and ratings or review content associated with closed accounts will show an unknown user as the source. Your profile may continue to be displayed in the services of others (e.g., search tools) until they refresh their cache. 5. Other Important Information 5.1. Security We monitor for and try to prevent security breaches. Please use the security features available through our Services. We implement security safeguards designed to protect your data, such as HTTPS. We regularly monitor our systems for possible vulnerabilities and attacks. However, we cannot warrant the security of any information that you send us. There is no guarantee that data may not be accessed, disclosed, altered, or destroyed by breach of any of our physical, technical, or managerial safeguards. 5.2. Cross-Border Data Transfers We store and use your data outside your country. We process data both inside and outside of the United States and rely on legally-provided mechanisms to lawfully transfer data across borders.&nbsp; Learn more . Countries where we process data may have laws which are different from, and potentially not as protective as, the laws of your own country. 5.3 Lawful Bases for Processing We have lawful bases to collect, use and share data about you. You have choices about our use of your data. At any time, you can withdraw consent you have provided by going to settings. We will only collect and process personal data about you where we have lawful bases. Lawful bases include&nbsp;consent (where you have given consent), contract (where processing is necessary for the performance of a contract with you (e.g., to deliver the LinkedIn Services you have requested) and “legitimate interests.”&nbsp; Learn more . Where we rely on your consent to process personal data, you have the right to withdraw or decline your consent at any time and where we rely on legitimate interests, you have the right to object.&nbsp; Learn More . If you have any questions about the lawful bases upon which we collect and use your personal data, please contact our Data Protection Officer&nbsp;here . If you're located in one of the Designated Countries or the UK, you can learn more about our lawful bases for processing in our European Regional Privacy Notice . 5.4. Direct Marketing and Do Not Track Signals Our statements regarding direct marketing and “do not track” signals. We currently do not share personal data with third parties for their direct marketing purposes without your permission.&nbsp; Learn more &nbsp;about this and about our response to “do not track” signals. 5.5. Contact Information You can contact us or use other options to resolve any complaints. If you have questions or complaints regarding this Policy, please first&nbsp; contact LinkedIn &nbsp;online. You can also reach us by&nbsp; physical mail . If contacting us does not resolve your complaint, you have more&nbsp; options . Residents in the&nbsp; Designated Countries &nbsp;and&nbsp; other regions &nbsp;may also have the right to contact our Data Protection Officer&nbsp;here . If this does not resolve your complaint, Residents in the&nbsp;Designated Countries&nbsp;and other regions may have more&nbsp; options &nbsp;under their laws. Key Terms Consent Where we process data based on consent, we will ask for your explicit consent.&nbsp;You may withdraw your consent at any time, but that will not affect the lawfulness of the processing of your personal data prior to such withdrawal.&nbsp;Where we rely on&nbsp;contract, we will ask that you agree to the processing of personal data that is necessary for&nbsp;entering into or&nbsp;performance of your contract with us. We will rely on legitimate interests as a basis for data processing where the processing of your data is not overridden by your interests or fundamental rights and freedoms.&nbsp; LinkedIn &copy; 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language
2026-01-13T09:30:14
https://www.thoughtworks.com/es-es
Thoughtworks Spain | Una consultora tecnológica global | Thoughtworks Spain Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menú Cerrar Spain | Español Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English Buscar Cerrar Ask Tai Spain | Español Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English Lo que hacemos Visión general Soluciones Experiencia del cliente Innovación de producto Modernización de datos Escalando la IA Transformación de ingeniería de software con enfoque en IA Modernización de plataformas empresariales Gestión y operaciones de aplicaciones digitales Con quién trabajamos Visión general Industrias Automoción Sector público Energía Medios y publicaciones Comercio minorista y comercio electrónico Banca, servicios financieros y seguros Sin ánimo de lucro Viajes y transporte Servicios de salud y ciencias de la vida Servicios públicos Manufactura e ingeniería Insights Visión general Publicaciones Digitales y Herramientas Radar Tecnológico Una guía de opinión sobre el entorno tecnológico actual Opiniones Una publicación para líderes digitales Decoder Una guía tecnológica de la A a la Z para líderes de negocio Looking Glass Poniendo el foco en cambios del negocio liderados por la tecnología Todos los Insights Artículos Opiniones profesionales que ayudarán al crecimiento de tu negocio Blogs Asesoramiento de expertos sobre diseño, ingeniería, IA, carreras en tecnología y más Libros Navega a través de nuestra extensa biblioteca Podcasts en Español Podcasts en Español Ingeniería Carreras Visión general Nuestro proceso de aplicación Descubre lo que te espera durante nuestro proceso de selección Vida de consultoría Descubre cómo es la vida siendo Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Ofertas de trabajo Encuentra puestos vacantes en tu región Mantente conectado Suscríbete a nuestro boletín mensual Aprendizaje y desarrollo Descubre cómo apoyamos el crecimiento profesional Beneficios Revisa cómo cuidamos de nuestra gente Acerca Visión general Contacto Buscar Cerrar Ask Tai Perspectives: Edición 36 | May 2025 Ingeniería de software centrada en IA: el desarrollo, evolucionado Explora la última edición Diseño. Ingeniería. IA.  Lo que hacemos Despierta el extraordinario futuro de los pagos en tiempo real Obtén información hoy mismo Anterior Siguiente Pausa Reproducir 1 4 3 Diseño. Ingeniería. IA.   Somos una consultora tecnológica global que genera un impacto extraordinario al combinar experiencia en diseño, ingeniería e IA.   Durante más de 30 años, nuestra cultura de innovación y excelencia tecnológica ha ayudado a nuestra base de clientes a fortalecer sus sistemas empresariales, escalar con agilidad y crear experiencias digitales integradas.   Nos dedicamos a resolver los desafíos más críticos de nuestra base de clientes, combinando la inteligencia artificial con la creatividad humana para convertir sus ideas más ambiciosas en realidad. ¿Cómo podemos ayudarte? Nota: Este contenido puede no estar disponible en tu idioma de preferencia. Últimas perspectivas Tool Desbloquea el valor de tus datos a gran velocidad y escala Lee este informe E-Book Más allá de la vieja y nueva tecnología Descubre más Top 15 Thoughtworks se convierte en el principal socio de Google Cloud en el Modelo de Compromiso de Servicios Webinar Radar Tecnológico volumen 33 Explora la última edición Impacto extraordinario para nuestros clientes Historias destacadas de clientes Infrastructure idealworks: Pioneering smart logistics through infrastructure optimization and engineering effectiveness Descubre más Platforms Spotify: Colaboración de confianza durante cinco años fortalece el Mercado de Creadores de Spotify. Descubre más AI and ML BMW Group: Bringing connected AI to life at a leading automobile manufacturer Descubre más AI and ML minden.ai: Building yuu Rewards Club Singapore, a revolutionary customer loyalty platform Descubre más User experience NHS England: An innovative approach to re-registration saves millions while improving care outcomes Descubre más Cloud Etsy: Manteniendo la conexión humana en el corazón del negocio Descubre más Ver más Ver menos Nuestros socios de confianza ¿Listo/a para asumir un nuevo puesto? Los trabajos en tecnología pueden ser ordinarios. Hora de entrada, hora de salida: enjabonar, aclarar, repetir. ¿Quién quiere eso? Definitivamente no nosotros y definitivamente no tú. Thoughtworkers rompen el molde. Únete a nuestro equipo certificado como Los Mejores Lugares para Trabajar™️. Juntos tenemos un impacto extraordinario. Explora carreras profesionales con nosotros Transforma tu viaje digital Contáctanos Empresa Sobre nosotros Qué hacemos Asociaciones Con quién trabajamos Noticias Diversidad, equidad e inclusión Carreras Contáctate con nosotros Insights Centro de preferencias Artículos Blogs Libros Podcasts Información del sitio web Política de privacidad Accessibility statement Declaración sobre la esclavitud moderna Código de conducta Línea sobre Asuntos de Integridad Conecta con nosotros © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:14
https://www.thoughtworks.com/pt-br
Thoughtworks Brasil | Uma consultoria global de tecnologia | Thoughtworks Brazil Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Fechar Brazil | Português Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English Buscar Fechar Ask Tai Brazil | Português Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English O que fazemos Visão geral Soluções Experiência do cliente Inovação de produto Modernização de dados Dimensionamento de IA Transformação da Engenharia de Software com foco em IA Modernização de plataformas empresariais Gerenciamento e Operações de Aplicações Digitais Com quem trabalhamos Visão geral Indústrias Automotivo Setor público Energia Mídia e publishing Varejo e comércio eletrônico Serviços bancários, financeiros e seguros Sem fins lucrativos Viagem e transporte Saúde e ciências biológicas Serviços de utilidade pública Manufatura e Engenharia Insights Visão geral Ferramentas e Publicações Digitais Technology Radar Um guia de opinião sobre o universo de tecnologia atual Perspectives Uma publicação sem firula para líderes digitais Decoder Um guia de A a Z sobre tecnologia para lideranças executivas Looking Glass Um olhar sobre as mudanças que a tecnologia promove nos negócios Todos os Insights Artigos Visões de especialistas para ajudar seu negócio a crescer Blogs Consultoria especializada em design, engenharia, IA, carreiras em tecnologia e muito mais Livros Explore nossa vasta biblioteca Podcasts Discussões instigantes sobre as últimas novidades em negócios e tecnologia Engenharia Carreiras Visão geral Processo de aplicação O que esperar de uma entrevista conosco Vida de consultoria Saiba como é o dia a dia na Thoughtworks Graduadas e pessoas em transição de carreira Thoughtworks University: Preparação de futuras lideranças Vagas abertas Encontre oportunidades na sua região Conecte-se Assine nossa newsletter mensal Futuro do trabalho Aprendizagem e desenvolvimento Descubra como apoiamos o crescimento de carreira Benefícios Veja como cuidamos das nossas pessoas Sobre Visão geral Contato Buscar Fechar Ask Tai Perspectives: Edição 36 | May 2025 Engenharia de software com IA: A nova era do desenvolvimento Explore a edição mais recente Design. Engenharia. IA O que fazemos Forrester Wave™ Modern Application Development Services, Q1 2025 Thoughtworks é reconhecida como líder e preferida pelas clientes Saiba mais (em inglês) Anterior Próxima Pausar Reproduzir 2 1 4 Design. Engenharia. IA   Somos uma consultoria global de tecnologia que promove impacto extraordinário ao combinar design, engenharia e IA.   Há mais de 30 anos, nossa cultura de inovação e excelência tecnológica tem ajudado nossas clientes a aprimorar seus sistemas, escalar com agilidade e criar experiências digitais integradas.   Estamos comprometidos em resolver os desafios mais complexos de nossas clientes, combinando IA e criatividade humana para transformar suas ideias audaciosas em realidade. Como podemos te ajudar? Conteúdos recentes Client story Ampliando a receita do Grupo IMC por meio de uma plataforma de serviços de alimentação Leia o case study Blog Tendências no setor de tecnologia Leia agora (em inglês) Tool Guia de tecnologia para lideranças de negócios Conheça o Decoder (em inglês) Webinar Technology Radar Vol.33 Explore a edição mais recente Impacto extraordinário com nossas clientes Nossas histórias de sucesso AI and ML BMW Group: Bringing connected AI to life at a leading automobile manufacturer Saiba mais Platforms Falabella: Construindo uma plataforma de varejo digital para acelerar novas funcionalidades Saiba mais Experience design Nubank: Design estratégico e experimentação coloca cliente no centro de programa de relacionamento Saiba mais Veja mais Veja menos Nossas parceiras Colocamos a cliente em primeiro lugar em tudo o que fazemos, incluindo nossas parcerias. Trabalhamos com parceiras selecionadas para oferecer uma variedade de soluções que atendam às necessidades e aspirações das nossas clientes. Combinando alcance global com atendimento local, aproveitamos nossa rede de parceiras de confiança para acelerar a escala, a velocidade e os resultados que entregamos às nossas clientes. Saiba mais Pronta para assumir um novo papel? Trabalhar com tecnologia pode ser monótono, sempre mais do mesmo. Quem quer isso? Nós com certeza não, e você também não. Na Thoughtworks, inovamos e fugimos do comum. Junte-se ao nosso time certificado pela Great Place to Work™️. Juntas, criamos impacto extraordinário. Explore nossas oportunidades de carreira Transforme sua jornada digital Entre em contato Empresa Sobre O que fazemos Parcerias Com quem trabalhamos Notícias Diversidade, equidade e inclusão Carreiras Entre em contato Insights Central de preferências Artigos Blogs Livros Podcasts Informações do site Política de privacidade Declaração de acessibilidade Declaração contra a escravidão moderna Código de Conduta Linha de Apoio à Integridade Relatório Nacional de Transparência Salarial e de Critérios Remuneratórios Entre em contato © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:14
https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.instagram.com%2F&amp;h=AT0DWH8rA-ZkHo6u076f7z-Rf5Q1oRdXoRmlU1k_y11JJTBSRfRZ60bbG2S8MzFVt0t52r4l-A_cXRlYhi41KnRDtkIPZZCCfpLwn7cpaACiWChdZtSgjKIpb4thSzYOz0_IF12jqqWaFtTD
Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026
2026-01-13T09:30:14
https://developers.google.com/google-ads/api/docs/version-migration
Upgrade your API version &nbsp;|&nbsp; Google Ads API &nbsp;|&nbsp; Google for Developers Skip to main content Google Ads API / English Deutsch Español Français Indonesia Português – Brasil Русский 中文 – 简体 日本語 한국어 Sign in Guides Reference Libraries and samples Policies Support Google Ads API Guides Reference Libraries and samples Policies Support Upgrade your API version Deprecation and sunset Reporting reference v22 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Campaign Search Term View Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Content Suitability Placement View Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Final Url Expansion Asset View Gender View Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location Interest View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Targeting Expansion View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Goal Config Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Goal Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Goal Config Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Search Term View Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Content Suitability Placement View Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Final Url Expansion Asset View Gender View Geo Target Constant Geographic View Goal Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location Interest View Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Targeting Expansion View Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v21 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Campaign Search Term View Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Content Suitability Placement View Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Final Url Expansion Asset View Gender View Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location Interest View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Search Term View Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Content Suitability Placement View Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Final Url Expansion Asset View Gender View Geo Target Constant Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location Interest View Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v20 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Gender View Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Gender View Geo Target Constant Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v19 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Gender View Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Gender View Geo Target Constant Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator API reference v22 Overview v21 to v22 diff services AccountBudgetProposalService Overview MutateAccountBudgetProposal AccountLinkService Overview CreateAccountLink MutateAccountLink AdGroupAdLabelService Overview MutateAdGroupAdLabels AdGroupAdService Overview MutateAdGroupAds RemoveAutomaticallyCreatedAssets AdGroupAssetService Overview MutateAdGroupAssets AdGroupAssetSetService Overview MutateAdGroupAssetSets AdGroupBidModifierService Overview MutateAdGroupBidModifiers AdGroupCriterionCustomizerService Overview MutateAdGroupCriterionCustomizers AdGroupCriterionLabelService Overview MutateAdGroupCriterionLabels AdGroupCriterionService Overview MutateAdGroupCriteria AdGroupCustomizerService Overview MutateAdGroupCustomizers AdGroupLabelService Overview MutateAdGroupLabels AdGroupService Overview MutateAdGroups AdParameterService Overview MutateAdParameters AdService Overview MutateAds AssetGenerationService (closed beta) Overview GenerateImages (closed beta) GenerateText (closed beta) AssetGroupAssetService Overview MutateAssetGroupAssets AssetGroupListingGroupFilterService Overview MutateAssetGroupListingGroupFilters AssetGroupService Overview MutateAssetGroups AssetGroupSignalService Overview MutateAssetGroupSignals AssetService Overview MutateAssets AssetSetAssetService Overview MutateAssetSetAssets AssetSetService Overview MutateAssetSets AudienceInsightsService Overview GenerateAudienceCompositionInsights GenerateAudienceOverlapInsights GenerateInsightsFinderReport GenerateSuggestedTargetingInsights GenerateTargetingSuggestionMetrics ListAudienceInsightsAttributes ListInsightsEligibleDates AudienceService Overview MutateAudiences AutomaticallyCreatedAssetRemovalService Overview RemoveCampaignAutomaticallyCreatedAsset BatchJobService Overview AddBatchJobOperations ListBatchJobResults MutateBatchJob RunBatchJob BiddingDataExclusionService Overview MutateBiddingDataExclusions BiddingSeasonalityAdjustmentService Overview MutateBiddingSeasonalityAdjustments BiddingStrategyService Overview MutateBiddingStrategies BillingSetupService Overview MutateBillingSetup BrandSuggestionService Overview SuggestBrands CampaignAssetService Overview MutateCampaignAssets CampaignAssetSetService Overview MutateCampaignAssetSets CampaignBidModifierService Overview MutateCampaignBidModifiers CampaignBudgetService Overview MutateCampaignBudgets CampaignConversionGoalService Overview MutateCampaignConversionGoals CampaignCriterionService Overview MutateCampaignCriteria CampaignCustomizerService Overview MutateCampaignCustomizers CampaignDraftService Overview ListCampaignDraftAsyncErrors MutateCampaignDrafts PromoteCampaignDraft CampaignGoalConfigService Overview MutateCampaignGoalConfigs CampaignGroupService Overview MutateCampaignGroups CampaignLabelService Overview MutateCampaignLabels CampaignLifecycleGoalService Overview ConfigureCampaignLifecycleGoals CampaignService Overview EnablePMaxBrandGuidelines MutateCampaigns CampaignSharedSetService Overview MutateCampaignSharedSets ContentCreatorInsightsService Overview GenerateCreatorInsights GenerateTrendingInsights ConversionActionService Overview MutateConversionActions ConversionAdjustmentUploadService Overview UploadConversionAdjustments ConversionCustomVariableService Overview MutateConversionCustomVariables ConversionGoalCampaignConfigService Overview MutateConversionGoalCampaignConfigs ConversionUploadService Overview UploadCallConversions UploadClickConversions ConversionValueRuleService Overview MutateConversionValueRules ConversionValueRuleSetService Overview MutateConversionValueRuleSets CustomAudienceService Overview MutateCustomAudiences CustomConversionGoalService Overview MutateCustomConversionGoals CustomInterestService Overview MutateCustomInterests CustomerAssetService Overview MutateCustomerAssets CustomerAssetSetService Overview MutateCustomerAssetSets CustomerClientLinkService Overview MutateCustomerClientLink CustomerConversionGoalService Overview MutateCustomerConversionGoals CustomerCustomizerService Overview MutateCustomerCustomizers CustomerLabelService Overview MutateCustomerLabels CustomerLifecycleGoalService Overview ConfigureCustomerLifecycleGoals CustomerManagerLinkService Overview MoveManagerLink MutateCustomerManagerLink CustomerNegativeCriterionService Overview MutateCustomerNegativeCriteria CustomerService Overview CreateCustomerClient ListAccessibleCustomers MutateCustomer CustomerSkAdNetworkConversionValueSchemaService Overview MutateCustomerSkAdNetworkConversionValueSchema CustomerUserAccessInvitationService Overview MutateCustomerUserAccessInvitation CustomerUserAccessService Overview MutateCustomerUserAccess CustomizerAttributeService Overview MutateCustomizerAttributes DataLinkService Overview CreateDataLink RemoveDataLink UpdateDataLink ExperimentArmService Overview MutateExperimentArms ExperimentService Overview EndExperiment GraduateExperiment ListExperimentAsyncErrors MutateExperiments PromoteExperiment ScheduleExperiment GeoTargetConstantService Overview SuggestGeoTargetConstants GoalService Overview MutateGoals GoogleAdsFieldService Overview GetGoogleAdsField SearchGoogleAdsFields GoogleAdsService Overview Mutate Search SearchStream IdentityVerificationService Overview GetIdentityVerification StartIdentityVerification InvoiceService Overview ListInvoices KeywordPlanAdGroupKeywordService Overview MutateKeywordPlanAdGroupKeywords KeywordPlanAdGroupService Overview MutateKeywordPlanAdGroups KeywordPlanCampaignKeywordService Overview MutateKeywordPlanCampaignKeywords KeywordPlanCampaignService Overview MutateKeywordPlanCampaigns KeywordPlanIdeaService Overview GenerateAdGroupThemes GenerateKeywordForecastMetrics GenerateKeywordHistoricalMetrics GenerateKeywordIdeas KeywordPlanService Overview MutateKeywordPlans KeywordThemeConstantService Overview SuggestKeywordThemeConstants LabelService Overview MutateLabels LocalServicesLeadService Overview AppendLeadConversation ProvideLeadFeedback OfflineUserDataJobService Overview AddOfflineUserDataJobOperations CreateOfflineUserDataJob RunOfflineUserDataJob PaymentsAccountService Overview ListPaymentsAccounts ProductLinkInvitationService Overview CreateProductLinkInvitation RemoveProductLinkInvitation UpdateProductLinkInvitation ProductLinkService Overview CreateProductLink RemoveProductLink ReachPlanService Overview GenerateConversionRates GenerateReachForecast ListPlannableLocations ListPlannableProducts ListPlannableUserInterests ListPlannableUserLists RecommendationService Overview ApplyRecommendation DismissRecommendation GenerateRecommendations RecommendationSubscriptionService Overview MutateRecommendationSubscription RemarketingActionService Overview MutateRemarketingActions ShareablePreviewService Overview GenerateShareablePreviews SharedCriterionService Overview MutateSharedCriteria SharedSetService Overview MutateSharedSets SmartCampaignSettingService Overview GetSmartCampaignStatus MutateSmartCampaignSettings SmartCampaignSuggestService Overview SuggestKeywordThemes SuggestSmartCampaignAd SuggestSmartCampaignBudgetOptions ThirdPartyAppAnalyticsLinkService Overview RegenerateShareableLinkId TravelAssetSuggestionService Overview SuggestTravelAssets UserDataService Overview UploadUserData UserListCustomerTypeService Overview MutateUserListCustomerTypes UserListService Overview MutateUserLists common ActivityCityInfo ActivityCountryInfo ActivityIdInfo ActivityRatingInfo ActivityStateInfo AdAppDeepLinkAsset AdAssetPolicySummary AdCallToActionAsset AdDemandGenCarouselCardAsset AdImageAsset AdMediaBundleAsset AdScheduleInfo AdTextAsset AdVideoAsset AdVideoAssetInfo AdVideoAssetInventoryPreferences AdditionalApplicationInfo AddressInfo AgeDimension AgeRangeInfo AgeSegment AppAdInfo AppDeepLinkAsset AppEngagementAdInfo AppPaymentModelInfo AppPreRegistrationAdInfo AssetDisapproved AssetInteractionTarget AssetLinkPrimaryStatusDetails AssetUsage AudienceDimension AudienceExclusionDimension AudienceInfo AudienceInsightsAttribute AudienceInsightsAttributeMetadata AudienceInsightsAttributeMetadataGroup AudienceInsightsCategory AudienceInsightsEntity AudienceInsightsLineup AudienceSegment AudienceSegmentDimension BasicUserListInfo BookOnGoogleAsset BrandInfo BrandListInfo BudgetCampaignAssociationStatus BudgetSimulationPoint BudgetSimulationPointList BusinessMessageAsset BusinessMessageCallToActionInfo BusinessProfileBusinessNameFilter BusinessProfileLocation BusinessProfileLocationGroup BusinessProfileLocationSet CallAdInfo CallAsset CallFeedItem CallToActionAsset CalloutAsset CalloutFeedItem CampaignGoalSettings CampaignGoalSettings.CampaignRetentionGoalSettings CampaignThirdPartyBrandLiftIntegrationPartner CampaignThirdPartyBrandSafetyIntegrationPartner CampaignThirdPartyIntegrationPartners CampaignThirdPartyReachIntegrationPartner CampaignThirdPartyViewabilityIntegrationPartner CarrierInfo ChainFilter ChainLocationGroup ChainSet ClickLocation CombinedAudienceInfo Commission ConceptGroup Consent ContentLabelInfo CpcBidSimulationPoint CpcBidSimulationPointList CpvBidSimulationPoint CpvBidSimulationPointList CriterionCategoryAvailability CriterionCategoryChannelAvailability CriterionCategoryLocaleAvailability CrmBasedUserListInfo CustomAffinityInfo CustomAudienceInfo CustomAudienceSegment CustomIntentInfo CustomParameter CustomerLifecycleOptimizationValueSettings CustomerMatchUserListMetadata CustomerThirdPartyBrandLiftIntegrationPartner CustomerThirdPartyBrandSafetyIntegrationPartner CustomerThirdPartyIntegrationPartners CustomerThirdPartyReachIntegrationPartner CustomerThirdPartyViewabilityIntegrationPartner CustomizerValue DateRange DemandGenCarouselAdInfo DemandGenCarouselCardAsset DemandGenMultiAssetAdInfo DemandGenProductAdInfo DemandGenVideoResponsiveAdInfo DetailedDemographicSegment DeviceInfo DisplayUploadAdInfo DynamicBusinessProfileLocationGroupFilter DynamicCustomAsset DynamicEducationAsset DynamicFlightsAsset DynamicHotelsAndRentalsAsset DynamicJobsAsset DynamicLocalAsset DynamicRealEstateAsset DynamicTravelAsset EnhancedCpc EventAttribute EventItemAttribute ExclusionSegment ExpandedDynamicSearchAdInfo ExpandedTextAdInfo ExtendedDemographicInfo FinalAppUrl FixedCpm FixedCpmTargetFrequencyGoalInfo FlexibleRuleOperandInfo FlexibleRuleUserListInfo FrequencyCapEntry FrequencyCapKey GenderDimension GenderInfo GeoPointInfo GoalSetting GoalSetting.RetentionGoal HistoricalMetricsOptions HotelAdInfo HotelAdvanceBookingWindowInfo HotelCalloutAsset HotelCheckInDateRangeInfo HotelCheckInDayInfo HotelCityInfo HotelClassInfo HotelCountryRegionInfo HotelDateSelectionTypeInfo HotelIdInfo HotelLengthOfStayInfo HotelPropertyAsset HotelStateInfo HouseholdIncomeDimension ImageAdInfo ImageAsset ImageDimension InFeedVideoAdInfo IncomeRangeInfo InteractionTypeInfo IpBlockInfo ItemAttribute Keyword KeywordAnnotations KeywordConcept KeywordInfo KeywordPlanAggregateMetricResults KeywordPlanAggregateMetrics KeywordPlanDeviceSearches KeywordPlanHistoricalMetrics KeywordThemeInfo KnowledgeGraphAttributeMetadata LanguageInfo LeadFormAsset LeadFormCustomQuestionField LeadFormDeliveryMethod LeadFormField <a href="/google-ads/api/reference/rpc/v22/LeadFormSingleChoiceAnswers" class="devsite-nav-title gc-analytics-event" data-category="Site-Wide Custom Events" data-label="Book nav link, pathname: /google-ads/api/reference/rpc/v22/LeadFormSingleChoiceAnswers" track-type="bookNav" track-name="click" tra
2026-01-13T09:30:14
https://mspoweruser.com/choppity-ai-review/#respond
Choppity AI Review - Is It a Must-Have Tool for Short Clips? Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 4 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 4 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 4 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 4 weeks ago Get Weekly Updates Choppity AI Review - Is It a Must-Have Tool for Short Clips? Home » AI Tamal Das Tech Analyst AI 8 min. read Updated on January 24, 2025 Key notes Choppity AI converts long-form videos into short clips for YouTube, Instagram, and TikTok using generative AI technology. It includes features, like ClipAnything, Animated Captions, Profanity Censor, AI Screen and Webcam Recorder, etc. It also has a free trial limited to 30 minutes of video processing. &nbsp; Read this detailed Choppity AI review and find out if it has the features to boost your social media reel production game. If you wish to focus on short clips and create them from existing long-form videos, AI-powered video repurposing apps greatly help. One such is Choppity AI. Is it worth the subscription cost, though? Let&#8217;s find out! What Is Choppity AI? Choppity AI is an AI-powered video editor that converts long-form YouTube and other videos into short reels of 45 seconds. It&#8217;s an affordable alternative to professional editors, like Adobe Premiere Pro, Shotcut, PowerDirector, etc. While they require moderate expertise to produce reels, Choppity AI is more novice-friendly. You don&#8217;t need to install and configure any application. You can access it online using a web browser, upload videos or YouTube links to cloud storage, and upload outputs directly from the web app. Additionally, you can record the device screen , create captions , restrict profanities on clips, and manage SEO keywords . The video editor AI works just like ChatGPT, meaning you need to provide and edit prompts. Overall, Choppity AI is designed for: YouTube and TikTok video creators Podcasters Online advertisers Product or services marketers Online sales agencies Employee or user training agencies Customer support agencies. Pros Cons Offers a limited free trial. Limited video editing tools. No credit card is needed to sign up for the free plan. The user interface and experience could be better. Doesn&#8217;t require a high-performance PC. Video processing is slower than its competitors. No need to download, install, or configure any apps. The free plan only offers 30 minutes of video processing. You can edit the AI prompts. Get Choppity AI Features Now, let&#8217;s have a look at its main functionalities: ClipAnything Choppity AI uses a proprietary multimodal AI video clipping model. It allows you to search for interesting moments from long-form videos and convert those parts into YouTube Shorts or TikTok videos. Searches can be for highlight scenes, such as when someone is laughing, a soccer player scores a goal, a tiger is roaring, and so on. Munch AI, a similar video editor, also allows you to convert large videos into multiple short-form clips. However, Choppity is more accurate when capturing highlights and requires less manual editing. Animated Captions Closed captioning is mandatory for shorts on YouTube, TikTok, Instagram, and so on. Going through the script and manually typing everything can be bothersome, though. With Choppity AI, as soon as you upload the target video, the AI engine scans through it and creates a script in the background. It adds the caption automatically. All you need to do is choose the caption design , fonts , color , animations , transitions , and so on. When compared with Munch AI , Choppity AI creates better captions with accurate spelling and context. Also, there are more caption stylizing options. Censor Profanity You can get rid of profanity from your YouTube Shorts or Instagram Reels using the built-in curse word removal tool. It&#8217;s powered by a generative AI engine that automatically detects all profane words from the video script . You can customize how you wish to remove them, like sounding a beep or simply silencing them. You can also censor it in the caption using multiple garbled text options . Overall, the removal process is quite simple. The AI highlights the possible curse words in the script. You can click on the ones you wish to hide, choose an audio SFX, select the representative text for the caption, and you&#8217;re done. Short Video If you already have ready-made short clips, you can stylize them with audio and visual effects using the Short Video tool. You can add SFX and VFX organized in the following types: Video Size: Portrait, Square, and Landscape Captions: Classic, Tallboy, Elegant, Hormozi, etc. Captions Effect: Magic, Squiggle, Scroll, etc. Brand logo Brand music Zoom settings on captions . Choppity AI simplifies the editing process by offering visual buttons and previews. The features work exactly as claimed by the developer. You can also use the Suggest a style button on each module to request any designs you have been looking for in your project. AI Screen and Webcam Recorder The Recording module allows you to capture what&#8217;s happening on your PC screen or your webcam. You can manage all of your screen recording projects in Choppity AI. Most of its competitors lack this thoughtful feature. For example, you won&#8217;t find a built-in screen recording tool in Munch AI. AI Subtitles and Keyword Highlighting Choppity&#8217;s editor automatically extracts the audio script from the uploaded video. Then it repurposes the script into a subtitle for the reel. There&#8217;s a dedicated caption editing and customizing tool within the CC layer of the editing timeline. Here, you can change the subtitle if you like, frame by frame. Also, you can modify the fonts, animation, shadow, and position of the text. Team Management If you&#8217;re using Choppity AI for a social media marketing or YouTube channel management agency, you&#8217;ll have to collaborate on projects with multiple team members. Luckily, you can simply invite everyone into your Choppity AI account. When inviting a remote collaborator, you can assign role-based access as well. While I was writing this Choppity AI review, it allowed setting the access either as an Owner or Editor . If your team is really big and handling many projects, you can create sub-teams and assign editors to each for granular management. You can also download usage reports for each member. Pricing Choppity AI offers multiple subscription options: Creator Team Enterprise $16/month for 4 packs $108/month for 3 people Custom pricing Add up to 2 collaborators Add up to 3 collaborators Unlimited team members and sub teams 2 hours of video upload allowed per month 9 hours of video upload per billing cycle Unlimited video uploads 40GB free cloud storage 180GB free cloud storage Unlimited cloud storage 2 free custom templates 9 free custom templates Unlimited custom templates AI social media clips, animated captions, smooth tracking, and profanity censoring Everything in the Creator plan Unlimited team members and sub-teams ClipAnything and transcript-based editing Priority support Custom b-roll, images, SFX, music, etc. White-labeling of services for resale Transcript download Custom SaaS solutions Choppity AI doesn&#8217;t have a refund policy as of yet. However, you can write to its support desk. How To Use Choppity AI Let me show you how to get started and create a publish-ready YouTube Short using the Choppity AI below: Creating a YouTube Short From a Long Video Sign up for Choppity AI for free using any email or a Google Account . You&#8217;ll see the Choppity AI Project dashboard . Click on the Create new project button. You&#8217;ll find the video editing menu. Select Clips . You&#8217;ll now see the Upload your long video dialog box. Use this to upload a file from the local storage or enter a YouTube link . Ensure that the input video has conversations. You&#8217;ll now see the Customize your video screen. Use this to set up the following visual elements that will show up on the final YouTube Short: Language spoken: English or anything else that suits your project. Target clip duration: 45 seconds. Size: Portrait Captions: Tallboy Captions effect: Magic Use the Customize your video dialog box for these personalizations: Auto-highlight captions keywords: Enabled Logo: Brand logo Music: Brand music Zoom: At start and At key phrases Once done, hit the Continue, edit my video button. Wait while Choppity AI processes it. The edited short clip will show up on the Choppity AI Dashboard . Click on that to open the Edit screen. Click Edit . To remove profanity, click on the Curse tab. Click on the profane words you wish to silence. If you need to fine-tune the focus of the frame on the character, click on the Crop tab. Adjust the crop and click on the Save and exit button. Click on the Download button to save it to your PC. Recording Your PC Screen Using Choppity AI Click on the Create new project card and choose Recording from the next screen. The Choppity AI Screen Recording window will open in your web browser. Click on the Enable camera &amp; microphone button to set up the necessary device access to the app. If you wish to capture your screen, click on the Share screen button in the bottom left corner of the Recording window. Alternatively, if you wish to record video clips from your webcam, click on the Start camera button. Choppity AI Review &#8211; Verdict Choppity AI gets the job done, though there could be more features, like those cool ones available in the Munch AI or Opus Clip apps. All in all, it&#8217;s an affordable AI video editor that creates short clips within a budget. You can easily customize your subscription plan from one pack to multiple if your requirement increases. If you get one pack, the subscription cost will be dramatically reduced to only $4/ month. You can go up to 64 packs per month if you need to upload more. So, this service is a great option for budding digital agencies. Did you try it out after reading this in-depth Choppity AI review? Share your feedback in the comment box. Moreover, if you&#8217;re looking for the best AI video generator , we can help out! Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:14
https://www.linkedin.com/posts/kevinderudder_htmx-aspnet-razor-pages-web-development-activity-7414670907308351488-Ipo6
HTMX &amp; ASP.NET Razor Pages – Web development without the JavaScript pains | NDC London 2026 | Kevin DeRudder Agree & Join LinkedIn By clicking Continue to join or sign in, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy . Skip to main content LinkedIn Top Content People Learning Jobs Games Sign in Create an account Kevin DeRudder’s Post Kevin DeRudder 5d Report this post 𝗙𝗶𝗿𝘀𝘁 𝘁𝗮𝗹𝗸 𝗼𝗳 2026, 𝗮𝗻𝗱 𝗜’𝗺 𝗸𝗶𝗰𝗸𝗶𝗻𝗴 𝗶𝘁 𝗼𝗳𝗳 𝘄𝗶𝘁𝗵 𝗛𝗧𝗠𝗫 𝗮𝘁 NDC Conferences in Londen. In January, I’ll be speaking at NDC London about #HTMX &amp; # ASP.NET Razor Pages web development without the JavaScript pains. This session exists for one simple reason: too many web apps feel like a full-stack JavaScript bootcamp just to make a button work. https://lnkd.in/eKgWseVt If you’re building in .NET and you’re tired of: • Writing JavaScript for basic interactions • Maintaining a growing frontend stack • Debugging complexity that adds little value This talk is for you. What you will learn: • How HTMX enhances Razor Pages with minimal effort • Making AJAX requests without writing JavaScript • Handling swaps and partial updates cleanly • A real-world example of a simpler, more maintainable HTMX + Razor Pages app Looking forward to starting 2026 with HTMX, Razor Pages, and developers who prefer simple, effective solutions. HTMX &amp; ASP.NET Razor Pages – Web development without the JavaScript pains | NDC London 2026 ndclondon.com 33 Like Comment Share Copy LinkedIn Facebook X To view or add a comment, sign in 1,512 followers 123 Posts View Profile Follow Explore content categories Career Productivity Finance Soft Skills &amp; Emotional Intelligence Project Management Education Technology Leadership Ecommerce User Experience Show more Show less LinkedIn &copy; 2026 About Accessibility User Agreement Privacy Policy Cookie Policy Copyright Policy Brand Policy Guest Controls Community Guidelines العربية (Arabic) বাংলা (Bangla) Čeština (Czech) Dansk (Danish) Deutsch (German) Ελληνικά (Greek) English (English) Español (Spanish) فارسی (Persian) Suomi (Finnish) Français (French) हिंदी (Hindi) Magyar (Hungarian) Bahasa Indonesia (Indonesian) Italiano (Italian) עברית (Hebrew) 日本語 (Japanese) 한국어 (Korean) मराठी (Marathi) Bahasa Malaysia (Malay) Nederlands (Dutch) Norsk (Norwegian) ਪੰਜਾਬੀ (Punjabi) Polski (Polish) Português (Portuguese) Română (Romanian) Русский (Russian) Svenska (Swedish) తెలుగు (Telugu) ภาษาไทย (Thai) Tagalog (Tagalog) Türkçe (Turkish) Українська (Ukrainian) Tiếng Việt (Vietnamese) 简体中文 (Chinese (Simplified)) 正體中文 (Chinese (Traditional)) Language Sign in to view more content Create your free account or sign in to continue your search Sign in Welcome back Email or phone Password Show Forgot password? Sign in or By clicking Continue to join or sign in, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy . New to LinkedIn? Join now or New to LinkedIn? Join now By clicking Continue to join or sign in, you agree to LinkedIn’s User Agreement , Privacy Policy , and Cookie Policy .
2026-01-13T09:30:14
https://developers.google.com/google-ads/api/docs/sunset-dates
Deprecation and sunset &nbsp;|&nbsp; Google Ads API &nbsp;|&nbsp; Google for Developers Skip to main content Google Ads API / English Deutsch Español Español – América Latina Français Indonesia Italiano Polski Português – Brasil Tiếng Việt Türkçe Русский עברית العربيّة فارسی हिंदी বাংলা ภาษาไทย 中文 – 简体 中文 – 繁體 日本語 한국어 Sign in Guides Reference Libraries and samples Policies Support Google Ads API Guides Reference Libraries and samples Policies Support Upgrade your API version Deprecation and sunset Reporting reference v22 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Campaign Search Term View Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Content Suitability Placement View Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Final Url Expansion Asset View Gender View Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location Interest View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Targeting Expansion View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Goal Config Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Goal Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Goal Config Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Search Term View Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Content Suitability Placement View Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Final Url Expansion Asset View Gender View Geo Target Constant Geographic View Goal Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location Interest View Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Targeting Expansion View Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v21 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Campaign Search Term View Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Content Suitability Placement View Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Final Url Expansion Asset View Gender View Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location Interest View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Ai Max Search Term Ad Combination View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Search Term View Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Content Suitability Placement View Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Final Url Expansion Asset View Gender View Geo Target Constant Geographic View Group Content Suitability Placement View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location Interest View Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v20 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Gender View Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Gender View Geo Target Constant Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator v19 Overview Segments Resources with metrics Metrics Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Asset Ad Group Audience View Ad Schedule View Age Range View Asset Field Type View Asset Group Asset Group Asset Asset Group Product Group View Asset Set Asset Asset Set Type View Bidding Strategy Campaign Campaign Aggregate Asset View Campaign Asset Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Group Campaign Search Term Insight Channel Aggregate Asset View Click View Content Criterion View Conversion Action Customer Customer Asset Customer Search Term Insight Detail Placement View Display Keyword View Distance View Dynamic Search Ads Search Term View Expanded Landing Page View Gender View Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword View Landing Page View Location View Managed Placement View Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Group View Search Term View Shopping Performance View Shopping Product Smart Campaign Search Term View Topic View Travel Activity Group View Travel Activity Performance View User Location View Video Webpage View Resources without metrics Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Label Ad Group Asset Set Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Group Listing Group Filter Asset Group Signal Asset Group Top Combination View Asset Set Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Simulation Billing Setup Call View Campaign Asset Set Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Label Campaign Lifecycle Goal Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Combined Audience Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detailed Demographic Domain Category Experiment Experiment Arm Geo Target Constant Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Label Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Product Category Constant Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Shared Criterion Shared Set Smart Campaign Setting Third Party App Analytics Link Topic Constant User Interest User List User List Customer Type Query Builder Overview Resources Accessible Bidding Strategy Account Budget Account Budget Proposal Account Link Ad Ad Group Ad Group Ad Ad Group Ad Asset Combination View Ad Group Ad Asset View Ad Group Ad Label Ad Group Asset Ad Group Asset Set Ad Group Audience View Ad Group Bid Modifier Ad Group Criterion Ad Group Criterion Customizer Ad Group Criterion Label Ad Group Criterion Simulation Ad Group Customizer Ad Group Label Ad Group Simulation Ad Parameter Ad Schedule View Age Range View Android Privacy Shared Key Google Ad Group Android Privacy Shared Key Google Campaign Android Privacy Shared Key Google Network Type Asset Asset Field Type View Asset Group Asset Group Asset Asset Group Listing Group Filter Asset Group Product Group View Asset Group Signal Asset Group Top Combination View Asset Set Asset Set Asset Asset Set Type View Audience Batch Job Bidding Data Exclusion Bidding Seasonality Adjustment Bidding Strategy Bidding Strategy Simulation Billing Setup Call View Campaign Campaign Aggregate Asset View Campaign Asset Campaign Asset Set Campaign Audience View Campaign Bid Modifier Campaign Budget Campaign Conversion Goal Campaign Criterion Campaign Customizer Campaign Draft Campaign Group Campaign Label Campaign Lifecycle Goal Campaign Search Term Insight Campaign Shared Set Campaign Simulation Carrier Constant Change Event Change Status Channel Aggregate Asset View Click View Combined Audience Content Criterion View Conversion Action Conversion Custom Variable Conversion Goal Campaign Config Conversion Value Rule Conversion Value Rule Set Currency Constant Custom Audience Custom Conversion Goal Custom Interest Customer Customer Asset Customer Asset Set Customer Client Customer Client Link Customer Conversion Goal Customer Customizer Customer Label Customer Lifecycle Goal Customer Manager Link Customer Negative Criterion Customer Search Term Insight Customer User Access Customer User Access Invitation Customizer Attribute Data Link Detail Placement View Detailed Demographic Display Keyword View Distance View Domain Category Dynamic Search Ads Search Term View Expanded Landing Page View Experiment Experiment Arm Gender View Geo Target Constant Geographic View Group Placement View Hotel Group View Hotel Performance View Hotel Reconciliation Income Range View Keyword Plan Keyword Plan Ad Group Keyword Plan Ad Group Keyword Keyword Plan Campaign Keyword Plan Campaign Keyword Keyword Theme Constant Keyword View Label Landing Page View Language Constant Lead Form Submission Data Life Event Local Services Employee Local Services Lead Local Services Lead Conversation Local Services Verification Artifact Location View Managed Placement View Media File Mobile App Category Constant Mobile Device Constant Offline Conversion Upload Client Summary Offline Conversion Upload Conversion Action Summary Offline User Data Job Operating System Version Constant Paid Organic Search Term View Parental Status View Per Store View Performance Max Placement View Product Category Constant Product Group View Product Link Product Link Invitation Qualifying Question Recommendation Recommendation Subscription Remarketing Action Search Term View Shared Criterion Shared Set Shopping Performance View Shopping Product Smart Campaign Search Term View Smart Campaign Setting Third Party App Analytics Link Topic Constant Topic View Travel Activity Group View Travel Activity Performance View User Interest User List User List Customer Type User Location View Video Webpage View Query Validator API reference v22 Overview v21 to v22 diff services AccountBudgetProposalService Overview MutateAccountBudgetProposal AccountLinkService Overview CreateAccountLink MutateAccountLink AdGroupAdLabelService Overview MutateAdGroupAdLabels AdGroupAdService Overview MutateAdGroupAds RemoveAutomaticallyCreatedAssets AdGroupAssetService Overview MutateAdGroupAssets AdGroupAssetSetService Overview MutateAdGroupAssetSets AdGroupBidModifierService Overview MutateAdGroupBidModifiers AdGroupCriterionCustomizerService Overview MutateAdGroupCriterionCustomizers AdGroupCriterionLabelService Overview MutateAdGroupCriterionLabels AdGroupCriterionService Overview MutateAdGroupCriteria AdGroupCustomizerService Overview MutateAdGroupCustomizers AdGroupLabelService Overview MutateAdGroupLabels AdGroupService Overview MutateAdGroups AdParameterService Overview MutateAdParameters AdService Overview MutateAds AssetGenerationService (closed beta) Overview GenerateImages (closed beta) GenerateText (closed beta) AssetGroupAssetService Overview MutateAssetGroupAssets AssetGroupListingGroupFilterService Overview MutateAssetGroupListingGroupFilters AssetGroupService Overview MutateAssetGroups AssetGroupSignalService Overview MutateAssetGroupSignals AssetService Overview MutateAssets AssetSetAssetService Overview MutateAssetSetAssets AssetSetService Overview MutateAssetSets AudienceInsightsService Overview GenerateAudienceCompositionInsights GenerateAudienceOverlapInsights GenerateInsightsFinderReport GenerateSuggestedTargetingInsights GenerateTargetingSuggestionMetrics ListAudienceInsightsAttributes ListInsightsEligibleDates AudienceService Overview MutateAudiences AutomaticallyCreatedAssetRemovalService Overview RemoveCampaignAutomaticallyCreatedAsset BatchJobService Overview AddBatchJobOperations ListBatchJobResults MutateBatchJob RunBatchJob BiddingDataExclusionService Overview MutateBiddingDataExclusions BiddingSeasonalityAdjustmentService Overview MutateBiddingSeasonalityAdjustments BiddingStrategyService Overview MutateBiddingStrategies BillingSetupService Overview MutateBillingSetup BrandSuggestionService Overview SuggestBrands CampaignAssetService Overview MutateCampaignAssets CampaignAssetSetService Overview MutateCampaignAssetSets CampaignBidModifierService Overview MutateCampaignBidModifiers CampaignBudgetService Overview MutateCampaignBudgets CampaignConversionGoalService Overview MutateCampaignConversionGoals CampaignCriterionService Overview MutateCampaignCriteria CampaignCustomizerService Overview MutateCampaignCustomizers CampaignDraftService Overview ListCampaignDraftAsyncErrors MutateCampaignDrafts PromoteCampaignDraft CampaignGoalConfigService Overview MutateCampaignGoalConfigs CampaignGroupService Overview MutateCampaignGroups CampaignLabelService Overview MutateCampaignLabels CampaignLifecycleGoalService Overview ConfigureCampaignLifecycleGoals CampaignService Overview EnablePMaxBrandGuidelines MutateCampaigns CampaignSharedSetService Overview MutateCampaignSharedSets ContentCreatorInsightsService Overview GenerateCreatorInsights GenerateTrendingInsights ConversionActionService Overview MutateConversionActions ConversionAdjustmentUploadService Overview UploadConversionAdjustments ConversionCustomVariableService Overview MutateConversionCustomVariables ConversionGoalCampaignConfigService Overview MutateConversionGoalCampaignConfigs ConversionUploadService Overview UploadCallConversions UploadClickConversions ConversionValueRuleService Overview MutateConversionValueRules ConversionValueRuleSetService Overview MutateConversionValueRuleSets CustomAudienceService Overview MutateCustomAudiences CustomConversionGoalService Overview MutateCustomConversionGoals CustomInterestService Overview MutateCustomInterests CustomerAssetService Overview MutateCustomerAssets CustomerAssetSetService Overview MutateCustomerAssetSets CustomerClientLinkService Overview MutateCustomerClientLink CustomerConversionGoalService Overview MutateCustomerConversionGoals CustomerCustomizerService Overview MutateCustomerCustomizers CustomerLabelService Overview MutateCustomerLabels CustomerLifecycleGoalService Overview ConfigureCustomerLifecycleGoals CustomerManagerLinkService Overview MoveManagerLink MutateCustomerManagerLink CustomerNegativeCriterionService Overview MutateCustomerNegativeCriteria CustomerService Overview CreateCustomerClient ListAccessibleCustomers MutateCustomer CustomerSkAdNetworkConversionValueSchemaService Overview MutateCustomerSkAdNetworkConversionValueSchema CustomerUserAccessInvitationService Overview MutateCustomerUserAccessInvitation CustomerUserAccessService Overview MutateCustomerUserAccess CustomizerAttributeService Overview MutateCustomizerAttributes DataLinkService Overview CreateDataLink RemoveDataLink UpdateDataLink ExperimentArmService Overview MutateExperimentArms ExperimentService Overview EndExperiment GraduateExperiment ListExperimentAsyncErrors MutateExperiments PromoteExperiment ScheduleExperiment GeoTargetConstantService Overview SuggestGeoTargetConstants GoalService Overview MutateGoals GoogleAdsFieldService Overview GetGoogleAdsField SearchGoogleAdsFields GoogleAdsService Overview Mutate Search SearchStream IdentityVerificationService Overview GetIdentityVerification StartIdentityVerification InvoiceService Overview ListInvoices KeywordPlanAdGroupKeywordService Overview MutateKeywordPlanAdGroupKeywords KeywordPlanAdGroupService Overview MutateKeywordPlanAdGroups KeywordPlanCampaignKeywordService Overview MutateKeywordPlanCampaignKeywords KeywordPlanCampaignService Overview MutateKeywordPlanCampaigns KeywordPlanIdeaService Overview GenerateAdGroupThemes GenerateKeywordForecastMetrics GenerateKeywordHistoricalMetrics GenerateKeywordIdeas KeywordPlanService Overview MutateKeywordPlans KeywordThemeConstantService Overview SuggestKeywordThemeConstants LabelService Overview MutateLabels LocalServicesLeadService Overview AppendLeadConversation ProvideLeadFeedback OfflineUserDataJobService Overview AddOfflineUserDataJobOperations CreateOfflineUserDataJob RunOfflineUserDataJob PaymentsAccountService Overview ListPaymentsAccounts ProductLinkInvitationService Overview CreateProductLinkInvitation RemoveProductLinkInvitation UpdateProductLinkInvitation ProductLinkService Overview CreateProductLink RemoveProductLink ReachPlanService Overview GenerateConversionRates GenerateReachForecast ListPlannableLocations ListPlannableProducts ListPlannableUserInterests ListPlannableUserLists RecommendationService Overview ApplyRecommendation DismissRecommendation GenerateRecommendations RecommendationSubscriptionService Overview MutateRecommendationSubscription RemarketingActionService Overview MutateRemarketingActions ShareablePreviewService Overview GenerateShareablePreviews SharedCriterionService Overview MutateSharedCriteria SharedSetService Overview MutateSharedSets SmartCampaignSettingService Overview GetSmartCampaignStatus MutateSmartCampaignSettings SmartCampaignSuggestService Overview SuggestKeywordThemes SuggestSmartCampaignAd SuggestSmartCampaignBudgetOptions ThirdPartyAppAnalyticsLinkService Overview RegenerateShareableLinkId TravelAssetSuggestionService Overview SuggestTravelAssets UserDataService Overview UploadUserData UserListCustomerTypeService Overview MutateUserListCustomerTypes UserListService Overview MutateUserLists common ActivityCityInfo ActivityCountryInfo ActivityIdInfo ActivityRatingInfo ActivityStateInfo AdAppDeepLinkAsset AdAssetPolicySummary AdCallToActionAsset AdDemandGenCarouselCardAsset AdImageAsset AdMediaBundleAsset AdScheduleInfo AdTextAsset AdVideoAsset AdVideoAssetInfo AdVideoAssetInventoryPreferences AdditionalApplicationInfo AddressInfo AgeDimension AgeRangeInfo AgeSegment AppAdInfo AppDeepLinkAsset AppEngagementAdInfo AppPaymentModelInfo AppPreRegistrationAdInfo AssetDisapproved AssetInteractionTarget AssetLinkPrimaryStatusDetails AssetUsage AudienceDimension AudienceExclusionDimension AudienceInfo AudienceInsightsAttribute AudienceInsightsAttributeMetadata AudienceInsightsAttributeMetadataGroup AudienceInsightsCategory AudienceInsightsEntity AudienceInsightsLineup AudienceSegment AudienceSegmentDimension BasicUserListInfo BookOnGoogleAsset BrandInfo BrandListInfo BudgetCampaignAssociationStatus BudgetSimulationPoint BudgetSimulationPointList BusinessMessageAsset BusinessMessageCallToActionInfo BusinessProfileBusinessNameFilter BusinessProfileLocation BusinessProfileLocationGroup BusinessProfileLocationSet CallAdInfo CallAsset CallFeedItem CallToActionAsset CalloutAsset CalloutFeedItem CampaignGoalSettings CampaignGoalSettings.CampaignRetentionGoalSettings CampaignThirdPartyBrandLiftIntegrationPartner CampaignThirdPartyBrandSafetyIntegrationPartner CampaignThirdPartyIntegrationPartners CampaignThirdPartyReachIntegrationPartner CampaignThirdPartyViewabilityIntegrationPartner CarrierInfo ChainFilter ChainLocationGroup ChainSet ClickLocation CombinedAudienceInfo Commission ConceptGroup Consent ContentLabelInfo CpcBidSimulationPoint CpcBidSimulationPointList CpvBidSimulationPoint CpvBidSimulationPointList CriterionCategoryAvailability CriterionCategoryChannelAvailability CriterionCategoryLocaleAvailability CrmBasedUserListInfo CustomAffinityInfo CustomAudienceInfo CustomAudienceSegment CustomIntentInfo CustomParameter CustomerLifecycleOptimizationValueSettings CustomerMatchUserListMetadata CustomerThirdPartyBrandLiftIntegrationPartner CustomerThirdPartyBrandSafetyIntegrationPartner CustomerThirdPartyIntegrationPartners CustomerThirdPartyReachIntegrationPartner CustomerThirdPartyViewabilityIntegrationPartner CustomizerValue DateRange DemandGenCarouselAdInfo DemandGenCarouselCardAsset DemandGenMultiAssetAdInfo DemandGenProductAdInfo DemandGenVideoResponsiveAdInfo DetailedDemographicSegment DeviceInfo DisplayUploadAdInfo DynamicBusinessProfileLocationGroupFilter DynamicCustomAsset DynamicEducationAsset DynamicFlightsAsset DynamicHotelsAndRentalsAsset DynamicJobsAsset DynamicLocalAsset DynamicRealEstateAsset DynamicTravelAsset EnhancedCpc EventAttribute EventItemAttribute ExclusionSegment ExpandedDynamicSearchAdInfo ExpandedTextAdInfo ExtendedDemographicInfo FinalAppUrl FixedCpm FixedCpmTargetFrequencyGoalInfo FlexibleRuleOperandInfo FlexibleRuleUserListInfo FrequencyCapEntry FrequencyCapKey GenderDimension GenderInfo GeoPointInfo GoalSetting GoalSetting.RetentionGoal HistoricalMetricsOptions HotelAdInfo HotelAdvanceBookingWindowInfo HotelCalloutAsset HotelCheckInDateRangeInfo HotelCheckInDayInfo HotelCityInfo HotelClassInfo HotelCountryRegionInfo HotelDateSelectionTypeInfo HotelIdInfo HotelLengthOfStayInfo HotelPropertyAsset HotelStateInfo HouseholdIncomeDimension ImageAdInfo ImageAsset ImageDimension InFeedVideoAdInfo IncomeRangeInfo InteractionTypeInfo IpBlockInfo ItemAttribute Keyword KeywordAnnotations KeywordConcept KeywordInfo KeywordPlanAggregateMetricResults KeywordPlanAggregateMetrics KeywordPlanDeviceSearches KeywordPlanHistoricalMetrics <a href="/google-ads/api/reference/rpc/v22/KeywordThemeInfo" class="devsite-nav-title gc-analytics-event" data-category="Site-Wide Custom Events" data-label="Book
2026-01-13T09:30:14
https://newrelic.com/fr/platform/web-performance-monitoring#main-content
Le monitoring des performances web - L&#039;observabilité pour les sites web | New Relic Passer au contenu principal Le monitoring des performances web Assurez la rapidité sans erreur de votre site web, améliorez l'expérience client et optimisez les taux de conversion&nbsp;—&nbsp;tout cela grâce à notre outil plug-and-play gratuit. Démarrer gratuitement QU&#039;EST-CE QUE LE MONITORING DES PERFORMANCES WEB ? Obtenez votre dashboard de suivi continu des performances web. Trouvez les pannes plus vite N'attendez pas que vos clients se plaignent. Identifiez et résolvez les problèmes plus rapidement avec le monitoring actif. Boostez le SEO et le trafic Le monitoring Lighthouse intégré suit ce que les moteurs de recherche priorisent et booste les performances. Évaluez facilement les Web Vitals Faites la comparaison contre les normes du secteur pour trouver les pages peu performantes en un clin d'œil. Gagnez du temps et économisez vos efforts Finies les vérifications manuelles. Automatisez les contrôles à toutes les échelles. POURQUOI LES PERFORMANCES WEB SONT-ELLES IMPORTANTES ? Les sites rapides attirent plus d&#039;utilisateurs et de revenus. 2 % d&#039;augmentation de conversion pour chaque seconde d&#039;amélioration du temps de chargement 24 % de baisse des abandons de page sur les sites atteignant les seuils Core Web Vitals 18 % d&#039;augmentation des revenus publicitaires en améliorant les Core Web Vitals PLUG AND PLAY Des infos de niveau expert sans le paramétrage d&#039;un expert Solution clé en main sans code pour faire le suivi continu des performances des pages. Finies les vérifications manuelles. Saisissez l'URL une seule fois et découvrez les performances de votre site dans le temps. Monitorez de manière proactive autant de pages que vous voulez. &nbsp; TEST AUTOMATISÉ DES SITES WEB Repérez et résolvez les problèmes avant qu&#039;ils ne nuisent à votre activité Alertes automatisées en cas de panne de page et de liens rompus. Planification des contrôles de site web pour le monitoring proactif continu. Tester les performances web à partir de plusieurs emplacements. AMÉLIORATION DE VOTRE SITE Apprenez à améliorer l&#039;expérience et le SEO Obtenez un dashboard avec les métriques clés, comme les Core Web Vitals de Google, pour comprendre pourquoi les pages sont en panne ou lentes.&nbsp; Obtenez des explications sur les métriques et comment elles rattachent l'engagement utilisateur à l'activité commerciale. Découvrez les recommandations pour les bonnes pratiques et le dépannage. Persévérance : Un leader DEM pour la 2e fois New Relic a été nommé Leader dans le Gartner® Magic Quadrant™ for Digital Experience Monitoring (DEM) de 2025 Lire le rapport Options tarifaires Démarrez avec l'offre généreuse Free Tier ou passez au niveau supérieur pour une couverture plus large. &nbsp; Gratuit Standard Pro &nbsp; Prix par mois Gratuit 10&nbsp;USD Standard 10&nbsp;USD avec une carte bancaire Pro 349&nbsp;USD/utilisateur (pour les engagements annuels) 418.80&nbsp;USD/utilisateur (pour la facturation mensuelle à la demande) &nbsp; Nombre de contrôles inclus Gratuit 500 Équivalent à 3 pages 1&nbsp;fois par jour Standard 10&nbsp;000 Pro 1&nbsp;000&nbsp;000 &nbsp; Surcharges au-delà des limites gratuites Gratuit Passage au niveau Standard pour obtenir plus de contrôles Standard 0,5 centime (USD) par contrôle Pro 0,5 centime (USD) par contrôle Voyez tout ce qui est inclus ici &nbsp; Regardez qui aime nos produits. Nous avons vu notre score Core Web Vitals passer de 45 à 90. Nous avons dépassé nos attentes. Je ne reçois plus de plaintes de nos clients disant que le site est lent. Nous sommes sûrs que 99&nbsp;% de nos clients ont une bonne expérience. Chet Patel Responsable AQ, Kurt Geiger 1 FAQ sur le monitoring des performances web Qu&#039;est-ce qu&#039;un contrôle ? Le monitoring des performances web de New&nbsp;Relic est alimenté par notre technologie de monitoring synthétique. Saisissez une URL et nous envoyons un groupe de minions synthétiques, ou de bots automatisés, pour mesurer différents éléments, comme la disponibilité de la page, les Core Web Vitals, le chargement de la page et du contenu, les liens rompus et la validité du certificat SSL. Combien faut-il de contrôles pour monitorer une URL ? Par défaut, nous lançons&nbsp;: Trois (3) moniteurs de pannes, à partir de différentes régions (qui ne comptent pas pour la limite).&nbsp; Un (1) moniteur de liens rompus. Trois (3) moniteurs de navigateurs simples, un pour chaque région. Un (1) moniteur Core Web Vitals&nbsp;; il n'est exécuté que lorsque vous ajoutez votre clé API Google PageSpeed Insights. À combien de contrôles gratuits ai-je droit ? Vous recevez 500 contrôles gratuits par mois. Si vous utilisez les paramètres par défaut, cela équivaut à trois pages contrôlées une fois par jour à partir de trois régions. Comment puis-je obtenir plus de contrôles gratuits ? Si vous fournissez votre numéro de carte bancaire, vous déverrouillez 10&nbsp;000 contrôles gratuits par mois. Combien coûtent les contrôles ? Au-delà de la limite gratuite, chaque contrôle supplémentaire coûte 0,5 centime (USD). Vous trouverez des renseignements supplémentaires sur la tarification dans la section sur le monitoring synthétique de notre page sur les tarifs en vigueur. Puis-je monitorer des géolocalisations privées ? Pour l'instant, nous n'effectuons le monitoring qu'à partir de l'une des 12 géolocalisations publiques. Que sont les codes d&#039;erreur et qu&#039;est-ce qu&#039;ils signifient ? Les codes d'erreur dans la section Broken Links sont des codes d'erreur de réponse des navigateurs courants&nbsp;: 400 Bad Request 401 Unauthorized: the page requires a password to access 403 Forbidden 404 Not Found: the page doesn’t exist 500&nbsp;Internal Server Error (server side) 501&nbsp;Not Implemented (server side) 502&nbsp;Bad Gateway (server side) 503&nbsp;Service Unavailable (server side) 504&nbsp;Gateway Timeout (server side) Voir la liste complète des codes d'erreur sur la page Liste des codes HTTP . Comment puis-je partager ce dashboard et les métriques avec mon équipe ? Utilisez l'élément du menu «&nbsp;Add user&nbsp;» dans le coin inférieur gauche de votre écran pour ajouter/inviter un nouvel utilisateur. Certaines visualisations indiquent « No data available » (Aucune donnée disponible). Pourquoi ? Cela peut arriver pour l'une des raisons suivantes&nbsp;: Dans certains cas, les données peuvent ne pas être disponibles lors de la réalisation d'un contrôle synthétique. La limite gratuite de 500 contrôles a été atteinte et les moniteurs sont en pause.&nbsp; Il n'y a aucun contrôle monitoré sur la plage de dates/heures que vous avez sélectionnée. Le monitoring des performances web de New Relic est-il possible sur les appareils mobiles et de bureau ? Pour l'instant, le monitoring des performances web de New&nbsp;Relic simule seulement une vue de bureau. Lancez-vous gratuitement dès aujourd'hui Démarrer gratuitement Obtenir une démo Search toggle Main navigation menu, 6 items Rechercher Submit Plateforme Plateforme d’observabilité intelligente Découvrir la plateforme APM APM 360 Observabilité d&#039;entreprise eAPM Monitoring SAP Serverless Transaction 360 Sécurité Test interactif de sécurité des applications (IAST) Security RX FinOps Intelligence Coûts du cloud Monitoring de l&#039;expérience numérique Monitoring des utilisateurs réels pour navigateurs Monitoring des utilisateurs réels pour mobile Session Replay Intelligence Streaming vidéo et publicitaire Synthetics Monitoring de performance web Intelligence Intégrations agentiques AIOps Monitoring de l&#039;IA Moteur Intelligence New Relic AI Infrastructure Monitoring AWS Cloud Monitoring Azure Cloud Monitoring des performances de bases de données Monitoring Google Cloud Monitoring d&#039;infrastructure Monitoring de Kubernetes Monitoring réseau Monitoring Prometheus Logs Gestion des logs Productivité des développeurs CodeStream Intelligence Architecture de services Capacités de la plateforme Alertes Suivi des changements Dashboards Entity Explorer Errors Inbox Contrôle de la flotte Intégrations OpenTelemetry Contrôle de pipeline Files d&#039;attente et flux de données Tarification Tarification à l&#039;utilisation Tarification basée sur l&#039;utilisation pour l&#039;observabilité full-stack — plateforme tout-en-un. Voir la tarification Gratuit Inscrivez-vous pour bénéficier d'une licence Free Tier gratuite à vie et 100&nbsp;Go/mois d'ingestion de données. 100&nbsp;Go d'ingestion de données Obfuscation automatique des logs Utilisateurs Core et Basic illimités 1 utilisateur Full Platform gratuit Plus de 30 capacités Rétention des données Démarrer gratuitement Standard Pour les petites équipes souhaitant commencer à utiliser l'observabilité. Limité à 5 utilisateurs Full Platform Assistance par tickets offerte SLA de réponse d'assistance de 2 jours ouvrables Authentification unique SAML Tarification Standard Pro Pour les équipes comptant plus de cinq ingénieurs et ayant des workloads complexes. Aucune limite au nombre d'utilisateurs Full Platform provisionnés Plusieurs options d'engagement SLA de réponse d'assistance initiale critique de 2&nbsp;heures Éligibilité à Data&nbsp;Plus Tarification Pro Enterprise Pour les organisations à l'échelle qui souhaitent une sécurité et une assistance avancées. Tout Pro avec en plus&nbsp;: Éligibilité à FedRAMP Moderate et HIPAA avec Data&nbsp;Plus Acheminement prioritaire des tickets SLA de réponse d'assistance initiale critique de 1&nbsp;heure Tarification personnalisée Solutions Les meilleures marques du monde choisissent New&nbsp;Relic Témoignages de nos clients Études de cas Monitoring de l&#039;expérience numérique Passez de la réactivité à la proactivité DevOps Consolidation des outils Open source Secteurs Retail et e-commerce Santé Médias, spectacles, divertissements ou loisirs New Relic pour les startups Organisations à but non lucratif Secteur public Technologies Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Monitoring Prometheus Monitoring SAP ServiceNow New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Enterprise Développeurs Développeurs Monitoring simple de Kubernetes Simplifiez le monitoring Kubernetes avec l&#039;opérateur New Relic Monitoring des applications sur mobile Monitorez les applications mobiles en quelques minutes avec l&#039;installation de quickstarts. Agent New Relic Browser Instrumentation personnalisée avec l&#039;agent de navigateur New Relic. 1 2 3 Documentation populaire Démarrer l&#039;ingestion des données Créer des dashboards personnalisés Examiner des requêtes NRQL Transférer des logs avec un agent d&#039;infrastructure Voir toute la documentation Plus de 780 intégrations Démarrer gratuitement. Python Installation Java Installation PHP Installation Ruby Installation Voir toutes les intégrations New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Ressources Qui sommes-nous&nbsp;? Leadership Recrutement Développement sécurisé New&nbsp;Relic for Students Espace presse ESG Forum de la communauté Assistance technique Témoignages de nos clients Des vidéos et études de cas montrent les stratégies gagnantes des entreprises grâce à l&#039;observabilité. Bibliothèque de ressources E-books, fiches techniques et livres blancs. Blog New Relic Actualité, conseils et meilleures pratiques du secteur. Événements et webinaires Rejoignez-nous à un événement ou une formation. New Relic University Parcours d&#039;apprentissage et formations. Calculateur de la valeur de l&#039;observabilité Découvrez la valeur de New Relic pour votre entreprise. New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 1 2 3 Search toggle Se connecter Se connecter Démarrer gratuitement Obtenir une démo Se connecter Se connecter Démarrer gratuitement Obtenir une démo ENTREPRISE ENTREPRISE Qui sommes-nous ? Recrutement Leadership Impact social Code de conduite ESG Portail des fournisseurs Principes d&#039;IA PRODUIT PRODUIT Intégrations Plateforme Sécurité VALEUR VALEUR Tarification Free Tier New Relic Comparatif New Relic/Datadog Comparatif New Relic/Dynatrace Comparatif New Relic/Splunk RESSOURCES RESSOURCES Blog Études de cas clients Forum de la communauté Documentation Communiqués de presse New Relic University Programme de partenariat Prévisions 2025 sur l&#039;observabilité Professional Services FAQ FAQ Qu’est-ce que le monitoring d’infrastructure ? Qu&#039;est-ce que l&#039;observabilité ? Qu’est-ce que Kubernetes ? Six étapes pour obtenir l&#039;observabilité d&#039;entreprise Les meilleures pratiques de gestion des logs Un seul outil suffit pour le monitoring d&#039;infrastructure et l&#039;APM Guide rapide pour démarrer avec New Relic Raisons pour lesquelles vous avez besoin d&#039;IAST Contactez-nous Conditions de service Politique DMCA Politique de confidentialité Conditions du site web Vos choix de confidentialité Cookies Déclaration sur l&#039;esclavage moderne Avis sur les brevets Français English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. Tous droits réservés. Comment New Relic peut-il aider le monitoring de votre stack? Démarrez gratuitement avec 100 Go + 1 utilisateur. Démarrer Suivez notre visite guidée du produit. Obtenir une démo Tarification simple et transparente Service des ventes
2026-01-13T09:30:14
https://www.thoughtworks.com/en-us
Thoughtworks United States | A leading technology consultancy | Thoughtworks United States Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close United States | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai United States | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Scaleups Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Learning and Development Explore how we support career growth Benefits See how we take care of our people About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights Report The agentic AI advantage: Fact, fiction and the future Explore our latest report with WIRED Tool Assess your AI readiness Get started Blog Macro trends in the tech industry Read now Report Techology and trends shaping SDVs Read SDV pulse now Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://www.thoughtworks.com/en-cn
Thoughtworks China | A leading technology consultancy | Thoughtworks China Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close China | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai China | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Learning and Development Explore how we support career growth Benefits See how we take care of our people About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights News and stories We&#39;ve achieved the AWS Agentic AI Specialization to accelerate autonomous enterprise innovation Learn more Tool Assess your AI readiness Get started Blog Mainframe modernization: An illustrated guide Read now Publication Catch the latest Tech Radar Explore this edition Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://www.thoughtworks.com/en-ec
Thoughtworks Ecuador | A leading technology consultancy | Thoughtworks Ecuador Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close Ecuador | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai Ecuador | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Learning and Development Explore how we support career growth Benefits See how we take care of our people About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights News and stories We&#39;ve achieved the AWS Agentic AI Specialization to accelerate autonomous enterprise innovation Learn more Tool Assess your AI readiness Get started Blog Mainframe modernization: An illustrated guide Read now Publication Catch the latest Tech Radar Explore this edition Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://www.thoughtworks.com/en-es
Thoughtworks Spain | A leading technology consultancy | Thoughtworks Spain Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close Spain | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai Spain | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Learning and Development Explore how we support career growth Benefits See how we take care of our people About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights Report The agentic AI advantage: Fact, fiction and the future Explore our latest report with WIRED Tool Assess your AI readiness Get started Blog Macro trends in the tech industry Read now Report Techology and trends shaping SDVs Read SDV pulse now Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://mspoweruser.com/best-emulator-for-pubg/
Best Emulator for PUBG Mobile - 5 Versatile Options for Gaming Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates Best Emulator for PUBG Mobile - 5 Versatile Options for Gaming Home » Gaming Tamal Das Tech Analyst Apps 7 min. read Updated on November 10, 2025 Finding the best emulator for PUBG Mobile is easy with this guide. If you want to play the game on a PC or Mac to experience it on a large screen, I&#8217;ve got you covered. I&#8217;ve tested multiple Android emulators and narrowed down the selection to five tools. Let&#8217;s see what they can offer! Best Emulator for PUBG Here are my top five picks. All of them have free versions and plans that are completely functional: GameLoop Formerly Tencent Game Buddy , GameLoop is the official Android emulator for PUBG Mobile. It also makes the most popular pool for matchmaking in PUBG for players who use an emulator engine. It has been highly optimized to offer the best first-person shooter gaming experience for Android and iOS game titles on Windows PCs and MacBooks. Since this is the most widely used emulator for PUBG, you&#8217;ll find it easy to enter an online game quickly. Also, the in-game controls work seamlessly with the PC keyboard and mouse. Furthermore, I saw better game server connection statistics, like lesser ping and better download speeds when the emulator communicates with the PUBG Mobile game server. Pros Cons Available for free. The user interface is bulky and cluttered. Official PUBG Mobile emulator. Most account sign-ins are in Mandarin language. Suitable for most Battle Royale game titles, like Free Fire, Call of Duty, and more. Emulator tabs, like Library, Store, and Streaming, often don&#8217;t load. Allows logging in to your Gooogle Account and Facebook Account to retrieve PUBG Mobile game progress levels. Might require a VPN service in places where PUBG Mobile is banned. Efficiently handles system resources to optimize frame rate. Allows local APK installations. Facilitates encrypted transactions for in-app purchases. Get GameLoop BlueStacks BlueStacks has been the leading Android emulator for Windows and Mac. Most importantly, it also supports PUBG Mobile. You can install the game app from Google Play or sideload it locally from an APK file. It brings the console gaming experience to PC or Mac by allowing the use of wired and wireless game controllers. Sometimes you might want to play PUBG in fullscreen and sometimes in windowed mode. Luckily, Bluestacks allows you to modify screen resolution. Also, depending on multitasking requirements, you can scale up or down Bluestacks&#8217; performance by switching to options, like Balanced Mode , High Performance Mode , and Low Memory Mode . It&#8217;s the recommended PUBG Mobile emulator for PC or Mac if you don&#8217;t want to use GameLoop. Also, it delivers the best ping rate and download speed compared to popular Bluestacks alternatives . Pros Cons Lightweight Android emulator for Windows and macOS. Matchmaking wait time is longer than GameLoop. Supports keyboard, mouse, and external game controllers. Shows in-app ads in the free version. Compatible with all in-game actions and athletic movements of PUBG Mobile. PUBG Mobile game server ping is higher and the download rate is slower than GameLoop. Matchmaking wait time is less than most unofficial PUBG Mobile emulators. Moments feature captures the last 30 seconds of gameplay automatically. Get BlueStacks LD Player LD Player is another best emulator for PUBG Mobile offering better gameplay graphics and combo movements. It utilizes the latest DirectX and OpenGL specifications of your PC to optimize and improve game performance. Also, there&#8217;s a Macro scripting feature that allows you to perform combo actions automatically, like collecting resources, automatic grinding, and more. Furthermore, it offers action game movement controls closer to the PC gaming style. Thanks to its Keyboard Mapping feature, you can customize the in-game controls. Moreover, LD Player supports installing and importing gameplay progress levels using APK, XAPK, and OBB files. Pros Cons Allows linking of PUBG Mobile&#8217;s previous accounts and game progress levels. It has a higher matchmaking wait time than GameLoop. GDPR compliant and doesn&#8217;t install unauthorized apps. Custom keyboard mapping is closer to the PC gaming style but not truly the same. It claims that it doesn&#8217;t steal and sell players&#8217; data to third-party agencies. In-app ads and app promotions. Compatible with OpenGL and DirectX. Removes pixel stuttering and tearing. Get LD Player Andy Android Emulator Andy Android Emulator creates a virtual Android OS system on your Windows PC and Mac so you can install, update, sync, and play PUBG Mobile. Also, it transforms the smartphone into a game controller device. If you don&#8217;t prefer to use keyboard and mouse control for PUBG Mobile, you can stream your gameplay from the mobile device to the PC screen and make all moves on the Android. It also offers other standard features that make PUBG Mobile gameplay convenient on PC or Mac, like Google Play Store sync , in-app purchases , Cloud Save in Android , Sensors Integration , Camera Integration , etc. Pros Cons Converts smartphone to a virtual game controller. PUBG Mobile matchmaking wait time is higher than GameLoop. It lets you use all standard smartphone sensors in the emulator desktop. Latency is high and download speed is low when connected to the PUBG server. You can use voice and video calls during gaming. Developer features are behind a paywall. Supports GPU features available on the PC or Mac. Allows you to sign in to game progress servers to sync game levels. Get Andy Android Emulator NoxPlayer NoxPlayer is the best emulator for PUBG Mobile if you prefer to play multiple games simultaneously. Thanks to its Multi Drive functionality , you can log in using different accounts and play. Alternatively, you can run PUBG side-by-side with other popular titles. It also supports custom keymapping so you can become faster in PUBG Mobile using a big screen, keyboard, and mouse, just as you&#8217;d play any other PC game. Furthermore, it allows external game controllers. Pros Cons Plays up to four game apps simultaneously. Long wait time before finding a PUBG Mobile match. Supports scripting feature. Ping is longer than in GameLoop. APK installation is allowed. Keyboard and mouse movements fail intermittently. Game progress levels can be synced or imported from cloud servers. Often NoxPlayer fails to load due to conflicts with Windows Hyper-V and Intel VT. Android OS is updated regularly. Supports in-app purchases. Get NoxPlayer How I Chose the Best Emulator for PUBG Here are my considerations for compiling this list: Easy to download and install: I prioritized emulators with a straightforward installation process and minimal setup steps. Ease of signing in: The best PUBG Mobile Android emulator must support seamless login to game servers via Facebook, Google, or other social accounts without glitches. Controller customization: I picked tools with intuitive options to customize game controller buttons. Responsiveness: The emulator must handle all in-game reflexes, athletic, and basic movements flawlessly. Cross-platform configuration: Compatibility with both PC and Mac systems is a must. Hyper-V compatibility: I selected options that didn’t conflict with Intel Hyper-V settings . Fast matchmaking: It should support quick matchmaking within the emulator pool to minimize waiting times. Ultimately, I ensured that the emulators were efficient enough so you could fairly compete. How To Use GameLoop for PUBG Download and install from the GameLoop official website. Once installed, hit Start . You&#8217;ll be taken to Home . Click the Login now button and sign in using your Google Account . You should see some game app suggestions on the right side of the GameLoop Home Screen . Find and click on PUBG Mobile . Now click the Install button. Once downloaded, the game will install automatically. Launch it from the Library or GameLoop Home Screen . Log in to PUBG Mobile using your Facebook or Google Account to start playing. Conclusion So, now you know how to find the best emulator for PUBG Mobile. You can try these on your PC and Mac before continuing with one for the longer run. It&#8217;s important to select the right emulator at the beginning when building up your PUBG Mobile profile from scratch. This guide should help you make that selection. You can also get emulators for various vintage consoles like GBA , SNES , NES , and more. Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://mspoweruser.com/midjourney-prompts-retro/
Midjourney Prompts for Retro Design: Fashion, Products, and More Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates Midjourney Prompts for Retro Design: Fashion, Products, and More Home » AI Tamal Das Tech Analyst AI 13 min. read Updated on November 10, 2025 Find trendy Midjourney prompts for retro designs here. Vintage designs, specifically those from the 1920s to the 1980s include retro typography, classic patterns, and timeless color palettes to elicit a sense of history and charm. If you wish to go retro and bring back proven creative ideas to create modern products, these prompts will help. Best Midjourney Prompts for Retro Design Ideas 1. 1957 Chevy BelAir Tailfin Shaped Couch You’ll love this: a 1957 Chevy BelAir tailfin couch fuses retro charm with post-atomic age flair. Bold chrome, vivid hues, and sleek curves bring the car’s iconic aesthetic to life. It’s a playful, futuristic nod to mid-century Americana. From the vistionaries of the post-atomic age of futuristic couch sofa shaped like a tailfin of a 1957 Chevy BelAir, A long Art deco streamline design mailbox mounted on top of a streamline boomerang shape metal base, painted light blue that looks retro in the design shape of a 1959 Cadillac Eldorado and 1958 Corvette, red and pale white colors with chrome accent parts, on plain blank white background, couch sofa. Image Credit: mjart 2. Retro Spring Women Fashion This look includes vibrant palettes, folk-inspired patterns, and playful patchwork vibes. Think Lucy Grossmith’s style—bold, detached, yet eye-catching. Haute couture spring fashion shoot, adorable couture purse, in the style of lucy grossmith, colorful, eye-catching compositions, vibrant palettes, inspired by retro aesthetics, cold and detached atmosphere, vintage aesthetics, inspired by folkart, play of light and shade, patchwork collage aesthetics, Olivia Gibbs Image Credit: mjart 3. Astropunk Theme Park Retro NFT Design You’ll love this AstroPunk NFT design—a retro-futuristic theme park with bold neon, glossy metals, and whimsical details. Picture bulbous skyscrapers, carnival rides, and vibrant watercolor-pencil palettes. Stunning fantasy bulbous astropunk skyscraper in midground, glossy transparent cylinder, bright colorful metal, spray paint, bustling amusement park city, theme park, vintage retro space shuttle, thrill rides, carnival rides, roller coaster, monorail, maximal depth of field, maximally detailed, charming, bold vivid colors, splash of neon, whimsical, far cry, photorealistic, hyperrealistic, ray tracing, subsurface scattering, aerial view from 5000 feet, watercolored pencil color palette Image Credit: mjart 4. Retro Christmas Greetings Card Design You’ll adore this Midjourney prompt for a retro Christmas card design—a dreamy blend of rustic charm and festive nostalgia. Knitted gloves, a jute bow, pine boughs, and berries frame &#8220;Merry Christmas&#8221; in elegant type. It’s cozy, vintage, and perfect for your creative holiday projects. Vintage illustration of a detailed pair of hanging round shapped knitted hand gloves overlapping a little with jute bow on top and christmas berries and pine boughs with the words &#8220;Merry Christmas&#8221; written above in pretty fancy type, vintage, christmas theme, dreamy, rustic, clipart, Image Credit: prompts 5. Espresso Martini Flyer Design This Midjourney AI image generator prompt gives a glimpse into a retro advertisement or flyer design. It includes a bold title, vibrant cocktail glass, and iconic foam with coffee beans. The backdrop portrays an Italian coastal charm with boats and picturesque buildings. Create a vintage advertisement poster for the Espresso Martini. The poster should feature a bold, title &#8220;Espresso Martini&#8221; at the top. Below the title, depict a vibrant scene with a cocktail glass of Espresso Martini in the foreground, complete with foam layer and three coffee beans on top. In the background, illustrate a Italian picturesque coastal setting with boats and buildings along the shore. Include text at the bottom that reads &#8220;One Part Espresso &#8211; One Part Vodka &#8211; One Part ice.&#8221; Also include a white frame around the poster Image Credit: prompts 6. Vintage Travel Destination Poster Pack your imagination—this vintage travel poster takes you straight to Santa Maria, Azores! Bold lines, flat colors, and geometric shapes capture lush greenery, blue waters, and bird-of-paradise blooms. A vintage-style travel poster of Santa Maria, Azores, with the island&#8217;s lush greenery and blue waters in full view, featuring the text &#8220;SANTA MARIA, AZORES&#8221; at the top. The artwork is characterized by its bold lines, flat colors, and geometric shapes, reminiscent of mid-century advertising posters. It uses a limited color palette to highlight key elements like the bird-of-paradise flower or mountains, creating an iconic look that captures the essence of retro vacation marketing. Image Credit: mjart 7. Retro T-Shirt Illustration Idea Imagine wearing history—this retro T-shirt design merges bold typography with intricate cherubs and classical charm. Decorative lines, stars, and circular motifs create a timeless feel. Monochrome tones and distressed textures add vintage vibes. Epic prometheus intage-inspired t-shirt design featuring a bold central title in all caps, with an intricate, classical illustration of cherubs in the center. The layout includes decorative elements like lines, stars, and circular motifs, all in a monochromatic color scheme . The design should evoke a sense of nostalgia and classical artistry using bold typography for the text and a vintage, distressed texture to give it an aged look. Image Credit: mjart 8. 1960s Cat Portrait Mobile Wallpaper Step into the 1960s with a hip cat portrait for your mobile wallpaper—fluorescent orange fashion and bold sunglasses radiate vintage vibes. It&#8217;s portrayed with an advanced virtual camera profile to create a sharp contrast. The best mobile wallpaper, Award-winning wallpaper, Portrait Photography, In front view is a portrait of a cute cat wearing 1960s mid-century space-age fashion, Side view shot, Shot with Canon EOS R5, Setting a stark contrast that accentuates the subject, Fluorescent orange shade, Wearing a very fashionable lounge coat and sunglasses are a hip 1960s style, Clothing all in one color, Beautiful background Image Credit: mjart 9. Retro Bohemian 4K Art for NFT This Midjourney prompt for retro design perfectly balances a fantasy world of gigantic mushrooms, vintage photography, science fiction artwork, and creative sunset mountains. Vintage photography scfi art boho hyperborea race familiy living micelium fungi tech construction into the sunstet mountains , lemurian root race bioluminescence body Futuristic seventy&#8217;s James Christensen in modern boho luxury modern futuristic sty, mini wild flowers, glowing mist ant sunrise, exquisite detail, 30 &#8211; megapixel, 4k, 85 &#8211; mm &#8211; lens, sharp &#8211; focus, intricately &#8211; detailed, long exposure time, f/ 8, ISO 100, shutter &#8211; speed 1/ 125, diffuse &#8211; back &#8211; lighting, award &#8211; winning photograph, facing &#8211; camera, looking &#8211; into &#8211; camera, monovisions, elle, small &#8211; catchlight, low &#8211; contrast, High &#8211; sharpness, facial &#8211; symmetry, depth &#8211; of &#8211; field, golden &#8211; hour, ultra &#8211; detailed photography, shiny metal surface with intricate swirling mother of pearl inlays, raytraced, global illumination, mistical, magical, pineal gland crown, trendy, warm colors cyanotype, swamp fantasy, lace, dreamlike, surrealism, super cute, 4k, symmetrical, soft lighting, trending on artstation, intricate details, highly detailed, pencil drawing, sketching, unreal engine, oil painting, heavy strokes, paint dripping color pastel colorized photo by Scarlett Hooft Graafland, instagram contest winner, video art, irridescent, movie still, reimagined by industrial light and magic beautiful sibilings, smiling, cute detail face, cosmic knowledge, lace and embroided natural dress stars and constelation fluid with wild little wild flowers mixed with worm silk&amp; kimono glimerring hair, amatista, , octane, 3d render, super highly definition, mystic, magical, mist Volumetric lighting, orgánic fashion design architecture in MISTIC WOODS, babilonia gardens, buganbilia. Image Credit: mjart 10. Retro Fashion Magazine Cover Page Picture three women posing stylishly. Their outfits—a yellow dress, striped sweater, floral skirt—scream mid-70s to early-80s flair. Also imagine pleated skirts, playful vibes, and vintage chic. A vintage fashion magazine page featuring three women in retro outfits, one wearing a yellow short dress with white shoes and gloves, another woman is dressed in a striped sweater vest and long skirt, the third lady has a brown shirt top paired with a floral print mini pleated pencil skirt, all of them walking on the street, posing for a photo shoot. The outfits are in the style of retro from the mid-1970s to early 1980s. The background shows a cityscape. It is a high resolution photography with detailed facial features and hands. &#8211;v 5.2 &#8211;ar 93:128 Image Credit: Dallas59 11. Retro Adventure Movie Poster This is a Midjourney prompt for a movie poster for Indiana Jones, with dramatic painted visuals and bold hues. He&#8217;s rugged and torchlit, standing heroically. An epic adventure movie poster in the classic painted style of 1980s Indiana Jones films. The central focus is Harrison Ford as Indiana Jones, age 51, wearing his iconic fedora, leather jacket, and whip. He looks rugged and determined, holding a torch that casts a warm glow across the scene. Surrounding him are key characters: Henry Jones Senior played by Sean Connery, a scholarly older man with glasses and a tweed suit, standing with a thoughtful expression; a menacing German Wehrmacht officer in a crisp uniform, his posture exuding authority; and a mysterious young blonde woman in 1940s attire, her gaze enigmatic. In the background, majestic Byzantine temples loom, their intricate domes and arches illuminated by golden sunlight breaking through stormy skies. Action-packed elements like explosions, a crumbling bridge, and shadowy soldiers in the distance add drama to the composition. The color palette features warm golds, deep browns, and muted greens, with a hand-painted, cinematic texture reminiscent of vintage movie posters. High detail, dynamic composition, full of adventure and intrigue. &#8211;ar 2:3 &#8211;v 6.1 &#8211; Image #1 @bastian.gil Image Credit: bastian.gil 12. Retro Dungeons &amp; Dragons Book Cover This prompt blends vintage aesthetics with fantasy. Also, it features a bold red and white color scheme, with a large title at the top left. Moreover, the artwork, inspired by Greg Rutkowski and Alan Lee, showcases a Trojan horse, creating a nostalgic, epic feel. Ad for themed D&amp;D adventure style vintage Dungeons &amp; Dragons book cover with reds and whites, large title in the top left corner that says &#8220;Midjourney swag .&#8221; The front page showcases art inspired by Greg Rutkowski and Alan Lee, featuring Trojan horse .There is space allocated to introduce new characters or exhibit additional special effects, comprising an open grid texture background and distinct line iconography. This edition boasts unique illustrations on each side of every page. &#8211;ar 9:16 &#8211; (relaxed) Image Credit: @Archi 13. Male Clothing and Accessory Package in Retro This retro-inspired male clothing and accessory set features rich textures and classic style. A forest green wool overshirt with herringbone layers over a beige crewneck t-shirt, paired with dark brown corduroy trousers, and leather details. Elevated Textural Layering: Male clothing featuring a forest green wool overshirt with a subtle herringbone pattern, relaxed fit, layered over a beige cotton crewneck t-shirt. Paired with fine-wale dark brown corduroy trousers and chocolate leather brogues with a wingtip detail and slight patina effect. Accessories include a braided leather bracelet and a tan canvas tote bag with aged brass buckles. Laid flat on a flat grey background. &#8211;chaos 10 &#8211;ar 3:4 &#8211;style raw &#8211;stylize 50 &#8211;v 6.1 &#8211; (fast) Image Credit: @StuArt 14. Vintage Luxury Converted School Bus With the help of Midjourney AI, this prompt converts a school bus into a vintage luxury cabin. A Rajasthani-inspired reading nook is covered with velvet and linen cushions in soft pastel hues, together with a Japanese tea gongfu set. a realistic 8k photograph of the inside of a converted school bus, with red desert landscape visible through the windows, with a fancy Rajasthani style reading nook filled with ornate Indian style floor cushions and royal pillows in velvet and linen pastel dessert colors with a traditional Japanese tea gongfu set on a low wood table and a wooden herbal apothecary with rows of beautiful glass bottles, mysterious concoctions and flowers and fresh herbs and a water fountain &#8211; Upscaled by @iamjennabee (fast) Image Credit: @iamjennabee 15. Vintage Flyer for a Play This is a retro-style play flyer prompt for Midjourney that blends surrealism with nostalgia. The perspective is set in a 1920s Chicago clock shop featuring vintage clocks, gears, and dreamlike visuals. Create a whimsical and surreal marketing image for the play Failure: A Love Story. The setting is a 1920s Chicago clock shop, featuring elements like vintage clocks, gears, and the passage of time blending into dreamlike visuals. Include a romantic and bittersweet tone, with subtle hints of tragedy and love. Add ethereal lighting, a ghostly yet charming presence of characters intertwined with clocks and music notes, and a vibrant yet nostalgic color palette of gold, sepia, and soft pastels. Highlight the theme of fleeting time and love, emphasizing theatrical energy. &#8211;ar 3:2 &#8211; Image #4 @Delbraeth Image Credit: @Delbraeth 16. Retro Mobile Case Design This Midjourney AI prompt creates virtual phone case designs with a retro vibe. The product idea draws inspiration from the Kalevala. Also, it features twisted patterns of heroes, mythical creatures, and nature symbols. Design a phone case inspired by the Kalevala, incorporating elements of Finnish mythology and folklore. The case should feature intricate patterns and illustrations depicting scenes from the epic, such as legendary heroes, mythical creatures, and symbols of nature. Use a color palette that reflects the natural beauty of Finland, with deep greens, blues, and earthy tones. Include decorative motifs like stylized trees, rivers, and celestial elements that evoke the spiritual connection between nature and the stories within Kalevala. The overall design should be both artistic and functional, with a modern aesthetic that pays homage to this rich cultural heritage. &#8211;ar 16:9 &#8211;stylize 200 &#8211;v 6.1 &#8211; @BR.MID (fast) Image Credit: @BR.MID 17. Retro Inspired Website Design This Midjourney retro prompt should give you an idea about the user interface, objects, color palettes, typography, button styles, and forms you need to design a vintage website. Create a retro-themed website design, inspired by the 80s and 90s web aesthetics. Use vibrant, pastel color palettes like orange, pink, and purple, with a playful and dynamic layout. Incorporate nostalgic elements such as pixelated icons, neon gradients, bold typography with a mix of modern sans-serif and retro fonts. The website should feel user-generated, with featured community content, testimonials, and interactive buttons styled like vintage browser elements. Add subtle animations, such as hover effects and blinking cursors, while maintaining a clean and organized interface &#8211;ar 16:9 &#8211; (fast) Image Credit: ViaanDev 18. Vintage Food App Design Idea Are you trying to grab the attention of new and existing customers to your food app but struggling? Try retro! Use this Midjourney AI prompt to generate a vintage app interface consisting of a bold and bright color scheme, vintage illustrations, and retro typography. Gourmet popcorn stand: Fun and whimsical concept design, retro-inspired app design style, bright and bold color scheme, retro typography and illustrations., mobile app design, set of 2 frames, pair of screen, layout design, flat screen, iPhone 15 frame screen, 4k, UHD, creativee layout &#8211;relax &#8211;v 5.2 &#8211;style raw &#8211;s 267 &#8211; @lephuong (relaxed, stealth) Image Credit: @lephuong If you&#8217;re here, congratulations! You&#8217;ve discovered some of the most popular Midjourney prompts for retro design for various events, products, fashion, and content creation. Which one did you like the most? Comment below to let me know. If you have some suggestions, don&#8217;t hesitate to share them in your reply. If you like generative AI designs, check out these Midjourney prompts for shirt design and logos . Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://mspoweruser.com/write-human-ai-review/
Write Human AI Review: Is It Really Undetectable? Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates Write Human AI Review: Is It Really Undetectable? Home » review Tamal Das Tech Analyst AI 9 min. read Updated on November 10, 2025 This Write Human AI review shows you if you can trust this AI humanizer and detector for academic and content publishing needs. I&#8217;ve tested all of its features for a few days and covered its capabilities, pricing, and more. Read this guide until the end to learn if you should buy it. What Is WriteHuman? WriteHuman is a tool that humanizes AI-produced text from ChatGPT, Google Gemini, Microsoft Copilot, etc. According to the developer, the AI model employs a proprietary algorithm to rewrite the supplied content. It uses collocations, human-like tone, vocabulary, emotional undertones, idioms, and idiosyncracies that humans often express in their writings. While other AI engines humanize articles by merely replacing a few words with their common synonyms, removing compound sentences, or rewriting passive voices, WriteHuman follows a unique process. It analyzes the given text and creates multiple versions in its cache. Then, it runs all those versions through an internal AI detector as stringent as Turnitin or GPTZero . After weighing in their values, it shows the one that performs the best in the internal genAI content detector system. WriteHuman can rewrite the given text in multiple styles, like academic , marketing , professional , etc. Moreover, you can process content from different languages, like Chinese, French, German, Greek, Japanese, Russian, Polish, and more. Besides rewriting, it also helps you to detect AI-generated articles. However, it has a Trustpilot score of 2.6 with nine reviews . 78% of users were very critical of the tool. Pros Cons Simple process to humanize AI text or detect articles written by ChatGPT. The free trial is truly limited; you can only check 600 words in three different sessions of 200 words in a month. Built-in AI detector. Some Trustpilot users reported rewritten content being flagged as 90% AI by GPTZero and Turnitin. Creates an internal score to indicate the probability score of a text being human-written. Users complained about the refund policies. A free trial is available for evaluation. All subscriptions come with an auto-renew policy which you might not know in advance. No setup or configuring is needed. Very inconsistent rewrite quality. Affordable AI text humanizer. Get WriteHuman Features Now, let me introduce you to the features and how well they work in real-life scenarios. AI Humanizer You can copy the AI-generated content from other sources like ChatGPT, Gemini, Copilot, etc., into the writing interface and use the Write Human button to optimize your content. If the output isn&#8217;t satisfactory, you can hit the button again. However, there&#8217;s a definite limit to word or character count for text humanizing. It depends on your subscription level: Free: 200 words or 1,350 characters Basic: 600 words or 4,500 characters Pro: 1,200 words or 9,000 characters Ultra: 3,000 words or 21,000 characters For better results, you can also activate the Enhanced Model feature. It&#8217;s only available to paid subscribers. This is particularly useful if you wish to scan your AI-generated articles in Turnitin and Originality 3.0 AI detectors. Another cool feature is the eight different writing styles . These are the styles you can choose from: Standard: Use it if you need clear and straightforward writing free from jargon. Academic: A formal and evidence-based writing style that emphasizes structured arguments, critical analysis, and citation of sources. Casual: Use this mode when your intent is an informal and conversational style that often uses everyday language, contractions, and a relaxed tone. Scientific: A precise and objective style often used to present research, data, and logical reasoning in a structured format. Professional: A polished, concise, and respectful tone is used in workplace communication. Blog/SEO: A user-focused style designed to be engaging, keyword-rich, and optimized for search engine visibility. Creative: Use this writing style to emphasize originality, storytelling, and imaginative expression to incite audiences&#8217; emotion Technical: A highly detailed and specialized style to explain processes, systems, or concepts. Additionally, its user interface and visuals are more appealing than Humanize AI&#8217;s and StealthWriter&#8217;s. For instance, Humanize AI comes with an outdated-looking user interface with minimal customization options. Also, it claims 100% originality after the rewrite but rarely achieves that. However, Humanize AI allows you to scan a larger article in the free mode compared to WriteHuman . In another example, while StealthWriter is fully focused on creating SEO-optimized humanized content, WriteHuman is open to most writing styles. Also, it allows you to select the underlying AI model of the source text, like ChatGPT, Claude, and Llama. Furthermore, there&#8217;s a Human option that rewrites another human-produced article , which isn&#8217;t available in WriteHuman. I&#8217;ve tested the feature extensively in multiple AI-detecting apps. I&#8217;ve listed my findings below: I&#8217;ve created a definition for High-Frequency Trading in the standard ChatGPT AI model: Here&#8217;s the output created by WriteHuman with an internal Human Score of 99.96% : Then, I assessed the above text in various AI detectors. Here are my findings: Tested With GPTZero The GPTZero test result is outlined below: 93% human 0% mixed 7% AI Tested With ZeroGPT ZeroGPT considered this text 0% AI and 100% human-written. Tested With QuillBot Here&#8217;s the evaluation result by QuillBot: AI-generated 0% AI-generated &amp; AI-refined 0% Human-written &amp; AI-refined 0% Human-written 100% Tested With Copyleaks Copyleaks also finds this text 100% human written and 0% AI written. Tested With Writer The Writer AI detector also considers the text 100% human-generated. After extensive evaluation, it&#8217;s safe to say that WriteHuman AI successfully mimics humans&#8217; writing styles. However, I wasn&#8217;t pleased with the output&#8217;s quality. During the rewrite process, it lost some of the finer nuances and replaced them with fluff. You&#8217;ll have to spend a lot of time on editing and proofreading the results. AI Detector WriteHuman also allows you to check any text for AI watermarking using the AI Detector tool. It&#8217;s free of charge and you don&#8217;t have to sign up for an account to use it. The input text can be of up to 1,200 words , which is pretty impressive. QuillBot, ZeroGPT , and Copyleaks might offer more words per scan, but those come with the premium upgrade options. This means they maintain different AI detector algorithms for free and paid users. Data Privacy and Security The articles you evaluate or rewrite should stay strictly between you and the machine. You wouldn&#8217;t want any third party accessing your intellectual property. I checked the AI humanizer&#8217;s security policies and have found the following in place to protect your interests: Encrypted Web App: WriteHuman uses the HTTPS protocol to transmit data between your web browser and its servers. It can either use the TLS or SSL security protocols. This means third parties can&#8217;t usually access the data you send to or receive from its servers. Additional Security Protocols: It also employs standard and secure organizational and technical measures to ensure data privacy. It&#8217;s confirmed in section 8 of its Privacy Policy document. Intellectual Property Rights : WriteHuman states that it respects the IPR of other parties, like its users. Also, it states in section 2 of its Terms of Service document that you own the content you create or evaluate in the web app. However, you might not want to use this tool if your project requires to comply with the following security standards: Health Insurance Portability and Accountability Act (HIPAA) Federal Information Security Management Act (FISMA) . Also, if your work violates the Gramm-Leach-Bliley Act (GLBA) , you shouldn&#8217;t use WriteHuman. How To Use WriteHuman Now, let me show you below how easy it is to use this AI humanizer app: AI Text Humanizer Module Sign up for a free account using your Google Account. Copy content from the source, like ChatGPT. Paste the text in the AI Humanizer field as indicated in the screenshot. Make the following customizations if you want: Enhanced Model: Enable or disable. Select your desired tone: Standard, Academic, etc. Hit the Write Human button. GenAI Text Detecting Module Click on the AI Detector button at the top of the Home page. Copy the input text from another source and paste it onto the Detect AI interface. Click on the Check for AI button located in the bottom right corner. You&#8217;ll get the results in less than a second. Pricing You can start using WriteHuman right now for free. You&#8217;ll get a 600-word quota for the whole month distributed in three requests . However, the Enhanced Model won&#8217;t be available to you, which bypasses strict AI detectors like Turnitin and Originality AI. If you require more than a 600-word quota, here are the subscriptions you can go with: Basic for $12/ Month: You&#8217;ll get a monthly quota of 48,000 words which you can use in 80 requests of 600 words each . You can also use the Enhanced Model at no additional cost. Pro for $18/ Month: With the Pro package, you can rewrite up to 240,000 words . However, the limit will be 1,200 words per request and 200 requests in a month . In this tier, you also get priority access to customer support and new features. Ultra for $48/ Month: Being an Ultra member, you can create up to 3,000,000 words per month . In its pricing plan, it says 3,000 words per request with unlimited requests per month. However, the Terms of Service document says the requests are capped at 1,000 per month per user . In addition, you get all the other benefits a Pro subscriber enjoys. WriteHuman doesn&#8217;t offer any refunds . Ensure you cancel the subscription after buying to disable the auto-pay feature that charges you automatically for the next billing cycle. If you still want to discuss a refund possibility, you can send an email to the WriteHuman&#8217;s Admin team. Get WriteHuman Write Human AI Review &#8211; Verdict WriteHuman is an affordable alternative to more expensive ones, like Humanizeai.pro, Humanize AI, and AI Humanize. However, I can&#8217;t honestly say it performs adequately. In most re-written sentences, the tool distorts certain words completely changing their point. So, you&#8217;ll often need to thoroughly edit and optimize the rewritten content if you wish to use it. Still, it passed various strict AI detectors many times during my evaluation. Therefore, if you&#8217;re focused on bulk content generation at an affordable price without focusing too much on quality, you can go for WriteHuman. Did you try it? Did the tool satisfy your content creation and publishing needs? Comment below to share your feedback with us and other readers. Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://mspoweruser.com/midjourney-prompts-graphic-design/
Best Midjourney Prompts for Graphic Design for 2025 and Beyond Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates Best Midjourney Prompts for Graphic Design: Illustrations, Logos, &amp; More Home » AI Tamal Das Tech Analyst AI 13 min. read Updated on February 13, 2025 These are the best Midjourney prompts for graphic design covering various domains, like product packaging, branding, logos, concept designs, and more. Midjourney is a top-tier AI image generator that creates realistic and creatively unique images from text prompts. It’s great for overcoming creative blocks or generating reference images to spark new ideas. Below, I&#8217;ll show you some great tips to get started. Best Midjourney Prompts for Graphic Design Check out these ideas you can use in various professional and personal projects. 1. Coffee Brew Packaging Design If you&#8217;re a product designer, startup owner, business branding expert, or creative designer, this Midjourney prompt will help you create a unique design for coffee cups. It has abstract designs and a black-and-white background to make the best go-to cups. Papercraft lightbox coffee packaging, branding graphic design style, black and white background with a pattern of large letters of the word &#8220;L i g H t&#8221; in bold lettering written all over the page, high contrast, screen print aesthetics. &#8211;personalize ute1zhl &#8211;s 200 &#8211;style raw. Image Credit: It_s_all_good @Discord 2. Vector Logo Design Idea Think sleek, bold, and retro! The E7 Chesley logo blends sharp blue-green hues with a checkmark that pops like Superman’s ‘S’. Clean lines and flat design make it perfect for branding, while the retro-style font adds flair. vector logo for company called &#8220;E7 Chesley&#8221; with the letter e and an E as part of it, in blue green colors with check mark inside that is made up to be used like superman&#8217;s &#8216;S&#8217; on shirt or brand , vector graphic design with text reading retro style font saying &#8220;P rar Yarkechk&#8221;, on light background, 2d flat icon, simple clean lines, vector graphics, logo for business group named spud k Representatives &#8211;ar 128:65 &#8211;s 250. Image Credit: zia ur rehman @Discord 3. Ice-Cream Branding Design Idea Are you an owner of an ice cream brand or working on a business branding project involving ice creams? You can use this prompt or tweak it a little to design the most unique brand design ideas using Midjourney. Modern ice-cream branding, graphic design style, background with a pattern of large letters of the word &#8220;Othello&#8221; in bold lettering written all over the page, high contrast, screen print aesthetics. &#8211;tile &#8211;sref 3845913239 770 3211072856 &#8211;niji 6 &#8211;stylize 500 &#8211;personalize w4qquyu. Image Credit: It_s_all_good @Discord 4. Retro Toy Graphic Design If you&#8217;re looking for a cool and retro toy design idea for your merchandise startup business, check out this Midjourney prompt. It&#8217;ll generate an AI image of a Power Ranger watch with text for branding purposes. The default text is Crystal Bay which you can change. 80s toy, red and silver Power Ranger watch with a white screen that says &#8220;Crystal Bay (Training Township edited in the style of an early digital artist using early software used in web design)&#8221;. On each side is a different color symbol for one or more energy bar colors: a red diamond-shaped icon for a red beam, a yellow triangle facing up for green vines, a blue square representing a water surface, and a grey circle for earth dirt. The band has a large black plastic strap with a small gold metal pin fastening. &#8211;style raw. Image Credit: HustleHue @Discord 5. Graphical Illustration of a Futuristic App This Midjourney prompt for graphic design helps you create a concept mobile app idea with futuristic color palettes. The UI/UX design resembles that of Apple along with placeholder buttons for AI, brand name, etc. new &#8221; mobile app design for an AI voice assisitant called Stolz pne, which uses generative ai technology to create personalized artwork and graphics. The color palette is dark green with light red highlights. In the upper left corner of screen there&#8217;s text that says &#8220;SPainter&#8221;, in the top center section it has two buttons one labeled &#8216;AI&#8217; , second button l?enders name S Anchorid , underneath on bottom right hand side below circular logo you can see apple icons. A simple single element UI icon symbol representing AI from Apple design language. On page &#8221; New&#8221;. At the middle top of graphic there should be &#8211;ar 9:16 Image Credit: designer-fp @Discord 6. Graphic Design for a Taxi Brand Logo This is a sleek logo with nostalgic objects like lighthouses, seagulls, and nautical touches like anchors or captain’s hats. With a pro color palette of blue, yellow, and white, this design is perfect for business cards, car decals, and mobile icons. Design a sophisticated logo for &#8216;Captain Taxi&#8217; that highlights a 2012 black Peugeot 5008 and the scenic beauty of Nida, Lithuania. Include elements like lighthouses or seagulls to reflect the coastal location, combined with nautical symbols such as a captain&#8217;s hat or anchor. Use a professional color scheme of blue, yellow, and white to make the logo stand out. The final design should be versatile enough for business cards, car decals, and a mobile app icon. Image Credit: sangas @Discord 7. Car Rally Event Sticker Design Are looking for a vintage-inspired graphic design or cartoons for a classical car rally event? Take a look at this Midjourney prompt that includes retro fonts, subtle textures, and more. Create a vintage-inspired sticker design for a classic car rally event, with a primary red color as the main background. The design should have an elongated horizontal format, evoking a sense of nostalgia. At the center, feature a large, stylized number &#8216;7&#8217; that captures the essence of vintage racing numbers. Flanking this number, place the year &#8216;2024&#8217; in a bold, retro font on both sides to maintain symmetry. Above and below the central number, include the text &#8216;OLD TIMER CAR RALLY&#8217; in a classic serif font, which should be bold and easily legible against the red background. Emphasize the text with white outlines to ensure it stands out. The overall shape of the sticker should be a wide rectangle with rounded corners, reminiscent of old racing car decals. Add subtle textures and slight wear-and-tear effects to the design to give it an authentic, weathered look, as if the sticker has been cherished over many years &#8211;ar 18:9 Image Credit: SpacePudding @Discord 8. Angry Yellow Tiger as Car Decals If you&#8217;re thinking of a fierce, stylized tiger in yellow and pink with bold purple stripes for a racing car decal, you&#8217;re in luck. This prompt creates a car decal design with a modern graffiti style. Vector illustration of an abstract angry yellow and pink tiger with purple stripes in the style of modern graffiti. The tiger graphic is very stylised The vector graphics are on a flat background, with lines and a dynamic composition. The colors used are yellow, pink, dark grey, dark purple, white and cyan. This could be used as a race car decal warp. &#8211;ar 3:1 Image Credit: fredsmotion @Discord 9. Graphic Design of a Concept Car This is a Midjourney-based graphic design idea for a futuristic sports car that blends nature’s beauty with cutting-edge design. With soft purples, pinks, and metallic silvers, the glossy body reflects both sophistication and organic charm. A sleek and futuristic sports car design inspired by nature, incorporating the elegance and curves of the foxglove flower. The car features smooth, aerodynamic lines that flow seamlessly across its body, resembling the tubular shape of the foxglove petals. The exterior is glossy and modern, with a gradient color scheme of soft purples, pinks, and metallic silvers. The headlights are sharp and elongated, mimicking the flower&#8217;s pointed tips, while subtle organic patterns are etched into the body for added detail. The wheels have petal-like spokes, enhancing the floral-inspired aesthetic. The background is a clean, minimal studio setting, highlighting the car&#8217;s unique design and natural elegance &#8211;ar 6:5 &#8211;stylize 250 &#8211;v 6.1 Image Credit: Digital.Dream @Discord 10. Futuristic Coffee Mug Design In the age of generative AI, futuristic designs are in trend. One such example is this coffee mug design that you can use to mass-produce concept coffee mugs for art and crafts enthusiasts. A studio shot of a coffee mug designed by BRAUN in the style of Sam Kaplan, Zachary Goulko, leika, wes anderson, 40mm anamorphic &#8211;no face, logo, fonts, letters, type, names, description, writting, letters, human &#8211;v 4 &#8211;upbeta Image Credit: thalesmonteiro @Discord 11. Intricate Tattoo Design Idea How about a tattoo design of a bat with intricate, outstretched wings? It’s drawn with gothic linework, shading, and symmetrical balance. A highly detailed tattoo design of a bat with outstretched wings, drawn in a gothic and mystical style. Intricate linework and shading, symmetrical composition, soft glowing highlights, surrounded by ornamental filigree and crescent moons. Black and gray ink with subtle hints of silver. A perfect blend of elegance and mystery. &#8211;ar 9:16 &#8211;v 6.1 Image Credit: ???? @Discord 12. Japanese Woodblock Print Design This Japanese woodblock-inspired design showcases purple peonies with green leaves on an olive background. The artwork, perfect for jewelry designs , has a simple, refined look with two vertical stripes and a white &#8220;C&#8221; logo. An illustration of purple peonies with green leaves on an olive background, in the style of Japanese woodblock prints. The design uses clean lines and subtle shading to highlight details, with a flat vector appearance that focuses on simplicity without any shadows or highlights. The illustration is drawn on top of two vertical stripes for use as a smartphone wallpaper. A white &#8220;C&#8221; logo appears at one end of each stripe. The artwork has clean edges, a minimalistic style, and is presented as vector art. &#8211;ar 9:16 Image Credit: Kilina09 @Discord 13. Frozen Food Branding Design Are you looking for a fresh idea to market your frozen food products? Use this Midjourney prompt for graphic design to create unique web apps and product packaging designs that your customers will like. Web app interface design with a warm, empowering feel, combining soft gradients of light orange and light blue, designed for kids and teens battling bullying. Use gentle, illustrated icons and rounded cards that provide a welcoming, safe atmosphere. Include friendly, accessible fonts and layouts with soft light and shadows. The design should evoke a sense of calm support and encouragement., ui, ux, web design, desktop design, sass https://s.mj.run/t74Db4q97JU &#8211;ar 16:9 &#8211;iw 2.0 &#8211;no nature, trees, mountains &#8211;niji 6 Image Credit: dama_pack @Discord 14. Graphic Design Idea for UI/UX Design This mobile or web app interface design creates a calming space for kids and teens facing bullying. Soft gradients of orange and blue bring warmth, while illustrated icons and rounded cards add a friendly, safe touch. Web app interface design with a warm, empowering feel, combining soft gradients of light orange and light blue, designed for kids and teens battling bullying. Use gentle, illustrated icons and rounded cards that provide a welcoming, safe atmosphere. Include friendly, accessible fonts and layouts with soft light and shadows. The design should evoke a sense of calm support and encouragement., ui, ux, web design, desktop design, sass https://s.mj.run/t74Db4q97JU &#8211;ar 16:9 &#8211;iw 2.0 &#8211;no nature, trees, mountains &#8211;niji 6 Image Credit: IvoK1 @Discord 15. Social Media Posts for Sales Events This is a cozy, festive vibe for your social media post, inviting your audience to shop your &#8220;End of the Year SELF-CARE&#8221; sale. Think warm, elegant designs with an envelope and wax seal, surrounded by holiday motifs like gift boxes. A social media post design for &#8220;End of the Year SELF-CARE cool vacation, intellectual, and business gift&#8221; that features an envelope with a wax seal, surrounded by various holiday-themed items like presents or gift boxes. The typography text says &#8220;Cozy holiday invitation to end your last sale&#8221;, and other festive decorations are included. The background is a collage of different textures and colors representing winter, such as snowflakes, reds, whites, greys, and blacks. &#8211;ar 51:64 &#8211;style raw &#8211;s 750 &#8211;p bstmu1y Image Credit: k @Discord 16. Conceptual Digital Artwork A sleek digital artwork featuring interconnected objects as abstract shapes and icons, with glowing lines symbolizing power and influence. The design embraces a minimalist, modern style with smooth gradients, high contrast, and clean lines. A conceptual digital artwork of interconnected stakeholders represented as abstract shapes and icons, surrounded by glowing lines symbolizing influence and power dynamics, no text, clean modern design, with a neutral gray gradient background. Created using: infographic design style, clean lines, high contrast, smooth gradients, vector art, hd quality, minimalism &#8211;ar 16:9 &#8211;v 6.0 Image Credit: Tocq @Discord 17. Online Advertising Concept Illustration If you need to produce creative materials for an online advertising campaign you should use this Midjourney prompt. It includes appropriate objects and design materials reflecting the digital marketing niche, like social media site logos, website interfaces, mobile app interfaces, and more. An illustration of a woman in her office multitasking, . The other two sides show social media icons like YouTube, Instagram and Facebook. In the background we can see some illustrations representing digital marketing, online advertising and visual identity creation processes. In the style of flat style, vector graphic. White background. Clean lines. No shadows. Minimalistic, green and yellow-gold color palette &#8211;ar 16:9 &#8211;s 750 &#8211;v 6.0 Image Credit: Choco @Discord 18. Editorial Illustration Graphic Design Are you envisioning an editorial illustration featuring a confident Black woman radiating grace and empowerment? This is the generative AI prompt you can use on Midjourney. Editorial illustration. A confident and stylish Black woman exuding grace and empowerment, with a radiant smile and a poised demeanor. She is surrounded by vibrant, uplifting elements such as glowing abstract patterns, lush tropical plants, and colorful geometric shapes. Her outfit is bold and contemporary, blending rich textures and vibrant hues. The scene is illuminated with soft, warm light that enhances her features and creates a dynamic, joyful atmosphere, in the style of Adrian Tomine. &#8211;ar 2:3 &#8211;sref 1563657920::1 3264405804::1 3008503465::2 &#8211;s 250 &#8211;v 6.1 Image Credit: RainOn @Discord 19. Marketing Material Illustration A serene marketing illustration showcasing a white glass singing bowl surrounded by green leaves and moss. The elegant, minimalist design makes it ideal for beauty product advertising and branding. A white glass singing bowl surrounded by green leaves and moss on an isolated background with circular lighting, creating a natural and organic atmosphere for beauty product advertising, product photography, and branding designs. The composition includes the elegant and minimalist design of the grassy surface and the detailed textures of the ferns and stones, providing a visually appealing representation suitable for commercial use in digital marketing materials or packaging visuals. Image Credit: BeLoveLDM @Discord So, these are some of the Midjourney prompts for graphic design that you can use to create functional design ideas. You can also tweak the prompt your way to fit the output expectations. Since you&#8217;re into AI image generation, feel free to also look at these Midjourney prompts for interior design and logo prompts . Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://www.thoughtworks.com/en-cl
Thoughtworks Chile | A leading technology consultancy | Thoughtworks Chile Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close Chile | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai Chile | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Learning and Development Explore how we support career growth Benefits See how we take care of our people About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights News and stories We&#39;ve achieved the AWS Agentic AI Specialization to accelerate autonomous enterprise innovation Learn more Tool Assess your AI readiness Get started Blog Mainframe modernization: An illustrated guide Read now Publication Catch the latest Tech Radar Explore this edition Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://mspoweruser.com/choppity-ai-review/#primary
Choppity AI Review - Is It a Must-Have Tool for Short Clips? Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 4 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 4 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 4 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 4 weeks ago Get Weekly Updates Choppity AI Review - Is It a Must-Have Tool for Short Clips? Home » AI Tamal Das Tech Analyst AI 8 min. read Updated on January 24, 2025 Key notes Choppity AI converts long-form videos into short clips for YouTube, Instagram, and TikTok using generative AI technology. It includes features, like ClipAnything, Animated Captions, Profanity Censor, AI Screen and Webcam Recorder, etc. It also has a free trial limited to 30 minutes of video processing. &nbsp; Read this detailed Choppity AI review and find out if it has the features to boost your social media reel production game. If you wish to focus on short clips and create them from existing long-form videos, AI-powered video repurposing apps greatly help. One such is Choppity AI. Is it worth the subscription cost, though? Let&#8217;s find out! What Is Choppity AI? Choppity AI is an AI-powered video editor that converts long-form YouTube and other videos into short reels of 45 seconds. It&#8217;s an affordable alternative to professional editors, like Adobe Premiere Pro, Shotcut, PowerDirector, etc. While they require moderate expertise to produce reels, Choppity AI is more novice-friendly. You don&#8217;t need to install and configure any application. You can access it online using a web browser, upload videos or YouTube links to cloud storage, and upload outputs directly from the web app. Additionally, you can record the device screen , create captions , restrict profanities on clips, and manage SEO keywords . The video editor AI works just like ChatGPT, meaning you need to provide and edit prompts. Overall, Choppity AI is designed for: YouTube and TikTok video creators Podcasters Online advertisers Product or services marketers Online sales agencies Employee or user training agencies Customer support agencies. Pros Cons Offers a limited free trial. Limited video editing tools. No credit card is needed to sign up for the free plan. The user interface and experience could be better. Doesn&#8217;t require a high-performance PC. Video processing is slower than its competitors. No need to download, install, or configure any apps. The free plan only offers 30 minutes of video processing. You can edit the AI prompts. Get Choppity AI Features Now, let&#8217;s have a look at its main functionalities: ClipAnything Choppity AI uses a proprietary multimodal AI video clipping model. It allows you to search for interesting moments from long-form videos and convert those parts into YouTube Shorts or TikTok videos. Searches can be for highlight scenes, such as when someone is laughing, a soccer player scores a goal, a tiger is roaring, and so on. Munch AI, a similar video editor, also allows you to convert large videos into multiple short-form clips. However, Choppity is more accurate when capturing highlights and requires less manual editing. Animated Captions Closed captioning is mandatory for shorts on YouTube, TikTok, Instagram, and so on. Going through the script and manually typing everything can be bothersome, though. With Choppity AI, as soon as you upload the target video, the AI engine scans through it and creates a script in the background. It adds the caption automatically. All you need to do is choose the caption design , fonts , color , animations , transitions , and so on. When compared with Munch AI , Choppity AI creates better captions with accurate spelling and context. Also, there are more caption stylizing options. Censor Profanity You can get rid of profanity from your YouTube Shorts or Instagram Reels using the built-in curse word removal tool. It&#8217;s powered by a generative AI engine that automatically detects all profane words from the video script . You can customize how you wish to remove them, like sounding a beep or simply silencing them. You can also censor it in the caption using multiple garbled text options . Overall, the removal process is quite simple. The AI highlights the possible curse words in the script. You can click on the ones you wish to hide, choose an audio SFX, select the representative text for the caption, and you&#8217;re done. Short Video If you already have ready-made short clips, you can stylize them with audio and visual effects using the Short Video tool. You can add SFX and VFX organized in the following types: Video Size: Portrait, Square, and Landscape Captions: Classic, Tallboy, Elegant, Hormozi, etc. Captions Effect: Magic, Squiggle, Scroll, etc. Brand logo Brand music Zoom settings on captions . Choppity AI simplifies the editing process by offering visual buttons and previews. The features work exactly as claimed by the developer. You can also use the Suggest a style button on each module to request any designs you have been looking for in your project. AI Screen and Webcam Recorder The Recording module allows you to capture what&#8217;s happening on your PC screen or your webcam. You can manage all of your screen recording projects in Choppity AI. Most of its competitors lack this thoughtful feature. For example, you won&#8217;t find a built-in screen recording tool in Munch AI. AI Subtitles and Keyword Highlighting Choppity&#8217;s editor automatically extracts the audio script from the uploaded video. Then it repurposes the script into a subtitle for the reel. There&#8217;s a dedicated caption editing and customizing tool within the CC layer of the editing timeline. Here, you can change the subtitle if you like, frame by frame. Also, you can modify the fonts, animation, shadow, and position of the text. Team Management If you&#8217;re using Choppity AI for a social media marketing or YouTube channel management agency, you&#8217;ll have to collaborate on projects with multiple team members. Luckily, you can simply invite everyone into your Choppity AI account. When inviting a remote collaborator, you can assign role-based access as well. While I was writing this Choppity AI review, it allowed setting the access either as an Owner or Editor . If your team is really big and handling many projects, you can create sub-teams and assign editors to each for granular management. You can also download usage reports for each member. Pricing Choppity AI offers multiple subscription options: Creator Team Enterprise $16/month for 4 packs $108/month for 3 people Custom pricing Add up to 2 collaborators Add up to 3 collaborators Unlimited team members and sub teams 2 hours of video upload allowed per month 9 hours of video upload per billing cycle Unlimited video uploads 40GB free cloud storage 180GB free cloud storage Unlimited cloud storage 2 free custom templates 9 free custom templates Unlimited custom templates AI social media clips, animated captions, smooth tracking, and profanity censoring Everything in the Creator plan Unlimited team members and sub-teams ClipAnything and transcript-based editing Priority support Custom b-roll, images, SFX, music, etc. White-labeling of services for resale Transcript download Custom SaaS solutions Choppity AI doesn&#8217;t have a refund policy as of yet. However, you can write to its support desk. How To Use Choppity AI Let me show you how to get started and create a publish-ready YouTube Short using the Choppity AI below: Creating a YouTube Short From a Long Video Sign up for Choppity AI for free using any email or a Google Account . You&#8217;ll see the Choppity AI Project dashboard . Click on the Create new project button. You&#8217;ll find the video editing menu. Select Clips . You&#8217;ll now see the Upload your long video dialog box. Use this to upload a file from the local storage or enter a YouTube link . Ensure that the input video has conversations. You&#8217;ll now see the Customize your video screen. Use this to set up the following visual elements that will show up on the final YouTube Short: Language spoken: English or anything else that suits your project. Target clip duration: 45 seconds. Size: Portrait Captions: Tallboy Captions effect: Magic Use the Customize your video dialog box for these personalizations: Auto-highlight captions keywords: Enabled Logo: Brand logo Music: Brand music Zoom: At start and At key phrases Once done, hit the Continue, edit my video button. Wait while Choppity AI processes it. The edited short clip will show up on the Choppity AI Dashboard . Click on that to open the Edit screen. Click Edit . To remove profanity, click on the Curse tab. Click on the profane words you wish to silence. If you need to fine-tune the focus of the frame on the character, click on the Crop tab. Adjust the crop and click on the Save and exit button. Click on the Download button to save it to your PC. Recording Your PC Screen Using Choppity AI Click on the Create new project card and choose Recording from the next screen. The Choppity AI Screen Recording window will open in your web browser. Click on the Enable camera &amp; microphone button to set up the necessary device access to the app. If you wish to capture your screen, click on the Share screen button in the bottom left corner of the Recording window. Alternatively, if you wish to record video clips from your webcam, click on the Start camera button. Choppity AI Review &#8211; Verdict Choppity AI gets the job done, though there could be more features, like those cool ones available in the Munch AI or Opus Clip apps. All in all, it&#8217;s an affordable AI video editor that creates short clips within a budget. You can easily customize your subscription plan from one pack to multiple if your requirement increases. If you get one pack, the subscription cost will be dramatically reduced to only $4/ month. You can go up to 64 packs per month if you need to upload more. So, this service is a great option for budding digital agencies. Did you try it out after reading this in-depth Choppity AI review? Share your feedback in the comment box. Moreover, if you&#8217;re looking for the best AI video generator , we can help out! Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://newrelic.com/jp/platform/session-replay#main-content
Session Replay(セッションリプレイ) | New Relic メインコンテンツへ Session Replay(セッションリプレイ) New Relic のセッションリプレイ機能で、正確なユーザー体験をご覧ください。AI主導の洞察を活用してウェブサイトを最適化し、エンゲージメントやコンバージョンを高めることができます。 無料で始める デモを入手 New Relic Session Replayを実際にご覧ください Session Replay(セッションリプレイ)とは? 顧客体験に関する深い洞察をAIが導く ユーザーインタラクションの再生 顧客の摩擦点を特定して、顧客のアプリケーションの使用方法を正確に把握し、連携して問題を解決します。 バグの修正の迅速化 ユーザーセッションを記録を見直して、フロントエンドとバックエンド全体にわたる「悩みの種」から悩みを取り除きます。 ユーザープライバシーを安全に保護 プライバシー制御でユーザー情報を匿名に保ち、ユーザーのデータを守る 優れたエクスペリエンスの構築 エラー追跡とユーザーの行動の間のギャップを埋めて、優れたアプリケーションを構築 巻き戻し、再生し、解決する ユーザーインタラクションや不満のシグナルを自動的に収集して関連付け、即座にエンゲージメントに関するインサイトを提供します。手動による計装は不要です ユーザーの行動をもとに、エラーの影響範囲とパフォーマンスのボトルネックを即座に確認する 詳細なスタックトレースにアクセスし、パフォーマンスの問題の原因となっているコードを正確に特定する デバッグにおける詳細な洞察の活用 テレメトリーデータと併せてリプレイを確認し、ユーザーの行動を辿る ブラウザの開発ツールを使うかのようにアプリケーションのDOMツリーを使用する ユーザーの行動をソースで直接追跡し、当て推量を排除してバグを一瞬のうちに修正する コンソールログを自動的に収集し、コンテキスト内で表示して、デバッグを迅速化する ドキュメントを読む モバイルアプリ体験の最適化 モバイルリプレイとフルスタックテレメトリーを併せて確認し、完全なコンテキストを把握することで、トラブルシューティングを高速化 エラーサンプリングで主要セッションを自動取得し、APIで記録トリガーを制御 デフォルトでは個人識別情報を取得せず、カスタムマスキングやサーバーサイド構成更新により、ユーザーのプライバシーを保護 さらに詳しく すべての顧客のデータ保護を保証する リプレイされるセッションへのアクセスを細かく設定し、確実に機密データを保護する リプレイされるセッションの個人情報を自動的に隠し、ユーザーの個人情報を安全に守る 暗号化と安全なプロトコルを適用し、記録したセッションの機密性を維持することで、顧客の信頼を築き、ブランドを保護する 勢いを加速:DEMリーダーに2年連続で選出 2025年のGartner® Magic Quadrant™デジタル エクスペリエンス モニタリング(DEM)部門にてリーダーに選出 レポートを読む 50以上 機能。 単一のプラットフォーム単一価格で始めましょう 無料で始める 価格プラン New Relicでデジタル体験を監視 ブラウザ監視:パターンとパフォーマンスの変化を容易に検知 詳細を読む モバイル監視:モバイルアプリのエンドツーエンドの可視性を得る 詳細を読む 外形監視:アプリケーションをプロアクティブにテストし、ユーザーが気づく前にエラーを捕捉する 詳細を読む 今すぐ 無料で始めましょう 無料で始める デモを Search toggle Main navigation menu, 6 items 検索 Submit プラットフォーム インテリジェントオブサーバビリティプラットフォーム プラットフォームについて知る APM APM 360 ビジネスオブザーバビリティ eAPM SAPモニタリング サーバーレス トランザクション 360 セキュリティ インタラクティブ・アプリケーション・セキュリティ・テスト(IAST) セキュリティRX FinOps クラウドコスト・インテリジェンス デジタル エクスペリエンス モニタリング ブラウザでのリアルユーザー監視 モバイルでのリアルユーザー監視 セッションリプレイ ストリーミングビデオと広告インテリジェンス 外形監視 ウェブパフォーマンス監視 インテリジェンス Agentic Integrations AIOps AI Monitoring インテリジェンスエンジン New Relic AI インフラストラクチャ AWSクラウド監視 Azureクラウド監視 データベースパフォーマンス監視 Googleクラウド監視 インフラ監視 Kubernetes監視 ネットワーク監視 Prometheus監視 ログ ログ管理 開発者の生産性 CodeStream サービスアーキテクチャ・インテリジェンス プラットフォームの機能 アラート Change Tracking(変更追跡機能) ダッシュボード エンティティエクスプローラー Errors Inbox フリート管理 インテグレーション OpenTelemetry パイプライン管理 キュー&amp;ストリーム監視 価格設定 シンプルで透明性の高い価格体系。 すべてがひとつのプラットフォームに集約された、フルスタックオブザーバビリティ向けの価格設定です。 価格設定について 無料 100GB/月のデータ量が含まれる、期間制限のない無料プランにサインアップしましょう。 100GBデータの取り込み 自動のログ難読化 無制限のベーシックおよびコアユーザー 1名の無料フルプラットフォームユーザー 30以上の機能へのアクセス データ保持期間 無料で始める Standard オブザーバビリティの開始を検討している小規模チームに。 フルプラットフォームユーザー5名まで チケットサポートが利用可能 SLA - 2営業日以内にサポート対応 SAMLシングルサインオン Standard価格設定を使用 Pro 5名以上の開発者と、複雑なワークロードに対応する必要のあるチームに。 プロビジョニングできるフルプラットフォームユーザーの上限なし コミットメントのオプション SLA - 重大な問題発生時2時間以内に初動サポート対応 Data Plusが利用可能 Pro価格設定を使用 Enterprise 高度なセキュリティとサポートが必要な大規模組織向け。 Proのすべての機能に加え Data PlusでのFedRAMP ModerateおよびHIPAA適格 優先チケットルーティング SLA - 重大な問題発生時1時間以内に初動サポート対応 詳細を問い合わせる 導入事例 世界トップクラスの企業はNew Relicを使用しています。 顧客の体験談 導入事例 デジタル エクスペリエンス モニタリング 受動的アプローチから応答的アプローチへ DevOps ツールの統合 オープンソース 業界 小売とeコマース ヘルスケア メディア・エンターテインメント New Relic for Startups 非営利 公共部門 テクノロジー Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Prometheus監視 SAPモニタリング ServiceNow New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む 1 2 3 イベント 開発者 開発者 簡潔なKubernetes監視 New RelicオペレーターでKubernetes監視を簡素化 モバイルアプリ監視 クイックスタートのインストレーションでハイブリッドなモバイルアプリを数分で監視 New Relic Browserエージェント New Relic Browserエージェントを使用したカスタム計装 1 2 3 人気のドキュメント データ取り込みの開始 カスタムダッシュボードの作成 NRQLクエリの調査 Infrastructureエージェントを使用したログの転送 ドキュメントを表示する 780+インテグレーション 無料プランから始めましょう Python インストール Java インストール PHP インストール Ruby インストール すべてのインテグレーションを見る New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む 1 2 3 リソース 企業情報 リーダーシップ 採用情報 セキュアな開発 New Relic for Students ニュースルーム ESG コミュニティフォーラム 技術サポート 顧客の体験談 ビデオとケーススタディでは、企業がオブザーバビリティで勝ち組になる方法を紹介しています。 リソースライブラリ 電子書籍、データシート、ホワイトペーパー New Relicのブログ 業界の最新情報、ヒント、ベストプラクティス イベント&ウェビナー 今後のイベントやトレーニングにぜひ参加してください。 New Relic University 学習パスとトレーニングコース オブザーバビリティ価値測定ツール New Relicが高めるビジネス価値の詳細はこちらから。 New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 1 2 3 Search toggle ログイン ログイン 無料で始める お問い合わせ ログイン ログイン 無料で始める お問い合わせ CORPORATE CORPORATE 会社概要 ニュースルーム 採用情報 セキュリティ ESG/Social Impact パートナープログラム New Relic Trailblazerとは? PRODUCTS PRODUCTS インテグレーション プラットフォーム セキュリティ PRICING PRICING 料金プラン New Relic無料ティア New RelicとDatadogの比較 New RelicとDynatraceの比較 New RelicとSplunkの比較 RESOURCES RESOURCES イベント&amp;セミナー ブログ お客様事例 New Relicを学ぶ (NRU) ProgateでNew Relicを学ぶ コミュニティフォーラム デモをリクエスト お問い合わせ 資料請求 TOPICS TOPICS New RelicとAI insideが語る事業貢献するエンジニアの育成と組織変革 オブザーバビリティとは? 開発者にとってのオブザーバビリティとは? MELTとは? IASTとは? SREとは? 外形監視とは? オブザーバビリティ調査 (全体:2024版) お問い合わせ サービス利用規約 DMCA ポリシー プライバシーポリシー ウェブサイト利用規約 プライバシーに関するお客様の選択 Cookie ポリシー 英国現代奴隷法への対応 Patent Notice 日本語 English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. All rights reserved New Relicはスタックをより適切に監視する上でどのように役立ちますか? 100GB + 1ユーザー無料で開始 今すぐ始める ガイド付きの製品ツアーに参加 デモをリクエスト シンプルで透明性の高い価格体系 詳細を問い合わせる
2026-01-13T09:30:15
https://mspoweruser.com/midjourney-prompts-shirt-design/
Midjourney Prompts for Shirt Design - 25 Ideas To Get Started Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates Midjourney Prompts for Shirt Design - 25 Ideas To Get Started Home » AI Tamal Das Tech Analyst AI 13 min. read Updated on November 10, 2025 These Midjourney prompts for shirt design should help you overcome creative block and craft great casual and formal apparel for anyone. Let&#8217;s check them out! Best Midjourney Prompts for Shirt Design 1. Vibrant Green, Button-Down Elegant Shirt The shirt design in the image is a vibrant green, button-down style featuring an intricate pattern rendered using the Midjourney AI . The printed decoration combines geometric shapes and floral motifs, giving the shirt an elegant and unique aesthetic. It&#8217;s perfectly suitable for casual Fridays in an office or regular wearing in public places. A smiling woman in a green shirt standing in front of a green door, a stock photo by Radi Nedelchev, featured on pexels, cloisonnism, stockphoto, stock photo, studio portrait Image Credit: elielborges 2. Stylish Blue, Short-Sleeved Polo Shirt This is a stylish blue, short-sleeved cropped polo shirt. It features a classic collar and button placket, which is perfect for casual outings or sports activities. Its cropped design adds a modern twist. The design can also be adopted in fast-food restaurants as an employee uniform. Woman,blue golf shirt shirt, white miniskirt, wavy hair, concept art, cyborg, sharp focus, (slender waist, wide hips) , beautiful physique, straight bangs, smiling, large eyes, thick lips, wide mouth. Image Credit: yauyau 3. Superhero Themed T-Shirt Design This idea features a bold logo with varying elements, like a stylized shield, lightning bolts, or a mask. Vibrant colors like red, blue, and yellow give the vibe of classic comic book heroes. It’s a powerful design that captures the mystery and strength of your revered superheroes. Create a bold and eye-catching logo for a superhero-themed T-shirt brand. The logo should evoke the power and mystery of classic comic book superheroes, using strong, dynamic elements like a stylized shield, lightning bolts, or a superhero mask. Incorporate vibrant colors like red, blue, and yellow, reminiscent of classic hero themes, but feel free to add unique touches to make it stand out. The text should be powerful and bold, featuring the brand’s name in a heroic font, perhaps with slight shadowing or glow effects to enhance a &#8216;super-powered&#8217; feel. Surround the central design with subtle comic-style effects, like action lines or stars, to create a sense of motion and excitement. The logo should look impressive on both dark and light T-shirt backgrounds, capturing the attention of superhero enthusiasts. Image Credit: d351f6da22f 4. Geometric Pattern Shirt for Gents This men’s shirt features a subtle geometric pattern in blue against cream linen. It&#8217;s ideal for gents who value style and craftsmanship in lightweight, breathable fabrics. High-resolution photo of A 37 man with a sunglasses wearing a crisp, light-colored linen shirt in a subtle geometric pattern with hints of indigo blue against cream or off-white. The shirt is tailored to fit but allows for movement, with short sleeves. It&#8217;s made from high-quality handwoven linen that&#8217;s been dyed using traditional methods, giving it a soft and unique look standing in beach, photorealistic, UHD, shot on a Sony A7III, optimal photography, natural lighting &#8211;ar 50:111 Image Credit: 152fe75beb9 5. Cool and Refreshing School Uniform Shirt This luxury school uniform polo features a clean white base with subtle blue details. The shirt is tailored for a sharp, polished look. Your logo is displayed on the shirt, adding a personal touch. Luxury school uniform white polo shirt with blue color. My logo on on the shirt. Image Credit: 26827908c6c 6. Iridescent, Holographic, and Futuristic T-Shift Design This futuristic T-shirt features a 3D cartoon fox head with an iridescent and holographic texture. Also, the design blends WitchPunk, Y2K, and digital surrealism with strong metallic reflections in green and blue. 3D cartoon Fox Head with Human Body, Wearing Iridescent Holographic Liquid Texture &amp; Translucent Material Sun Protective Shirt, Boss Feel, Nike or Addidas Sun Protective Shirt, WitchPunk, Y2K Style, Green and blue, Blue, Metallic Feel, Strong Reflection, plain background, no background, pure single color background, Digital Fashion, Surreal Futurism, Supreme Kong NFT Artwork Style, disney style, headshot photography for portrait studio shoot, fashion editorial aesthetic, high resolution in the style of HAPE PRIME NFT, NFT 3D IP Feel, Bored Ape Yacht Club NFT project Feel, high detail, fine luster, 3D render,oc render, best quality,8K,bright, front lighting,Face Shot,fine luster,ultra detailed. Image Credit: Austa_clover 7. Hyperdetailed Hummingbird for Custom-Print T-Shirt This T-shirt illustration features a hyperdetailed hummingbird with glowing eyes, vibrant color splashes, and fire-and-ice effects. Also, the design blends dreamy brushstrokes, black ink splatter, and liquid textures on a black background. Perfect for bold, artistic fashion lovers. Hummingbird, hyperdetailed Eyes, T-Shirt Design, Line Art, Black Background, Ultra detailed, Detailed Gorgeous Face, Natural Skin, Water Splash, Colour Splash Art, Fire and Ice, Splatter, Black Ink, Liquid Melting, Dreamy, Glowing, Glamour, Glimmer, Shadows, Oil On Canvas, Brush Strokes, Smooth, Ultra High Definition, 8k, Unreal Engine 5, Ultra Sharp Focus, Intricate Masterpiece, Ominous, Golden Ratio, Highly Detailed, Vibrant, complete, Ultra High Quality Model Image Credit: MadScientist 8. Sketchy Feel Artistic T-Shirt This is a unisex T-shirt design featuring light, colorful sketches of modern tech icons like AI, coding, and robots. Also, it smartly fuses tech and artistry, to showcase your creativity and desire for innovation. An artistic T-shirt design featuring a sketchy feel. The design showcases a variety of colorful, light sketches representing modern technologies—such as AI, coding, social media, a pen, a laptop, a phone, and robots. These elements are creatively combined as icons and logos, all arranged within a hexagon shape to create a cohesive and vibrant composition. Image Credit: 169ae8ece36 9. Neon Tribal Pattern Futuristic T-Shirt Design This T-shirt rendering features neon tribal patterns with ultra-realistic details and smooth post-processing. The futuristic design pops with vibrant colors. It’s bold and visually stunning, perfect for anyone seeking a unique and modern tribal aesthetic. Incredible futuristic t-shirt design, neon tribal pattern, post-processing, de-noise, ultra realistic, unreal engine &#8211;w 1080 &#8211;h 1920 &#8211;q 2 &#8211;s 5000 . Image Credit: PromptHero 10. Blue Denim Shirt With a Casual Look This blue denim shirt blends casual charm with a bold, comic-inspired vibe. It features Artgerm-style fantasy illustration, adding dynamic energy. Perfect for everyday wear, it offers a relaxed yet striking look. A dark haired woman wearing blue jeans and an open shirt crouches in tall grass. She has her hand on the ground as if ready to jump up at any moment, in the style of Artgerm. Comic book art style character portrait fantasy illustration. &#8211;ar 37:64 &#8211;v 5.2 Image Credit: Dallas59 11. Spring-Inspired Illustrations for Teenage T-Shirts Soft pastel tones bring minimalist illustrations of pumpkins and sunflowers to life on a crisp white background. The design’s Peter Rabbit-inspired charm adds a playful, seasonal vibe perfect for spring. Basic minimalist design, pastel tones, white background, t-shirt design for spring, pumpkins with sunflowers, white background, similar to Peter Rabbit. &#8211;s 180 Image Credit: jasonraymond 12. 3D Fox Head NFT-Style Illustration for T-Shirts A fox head with a human body features iridescent holographic textures and sun-protective materials. Inspired by WitchPunk and Y2K aesthetics, its metallic reflections and digital fashion vibe make it perfect for anyone who loves surreal, cutting-edge designs. 3D cartoon Fox Head with Human Body, Wearing Iridescent Holographic Liquid Texture &amp; Translucent Material Sun Protective Shirt, Boss Feel, Nike or Addidas Sun Protective Shirt, WitchPunk, Y2K Style, Green and blue, Blue, Metallic Feel, Strong Reflection, plain background, no background, pure single color background, Digital Fashion, Surreal Futurism, Supreme Kong NFT Artwork Style, disney style, headshot photography for portrait studio shoot, fashion editorial aesthetic, high resolution in the style of HAPE PRIME NFT, NFT 3D IP Feel, Bored Ape Yacht Club NFT project Feel, high detail, fine luster, 3D render,oc render, best quality,8K,bright, front lighting,Face Shot,fine luster,ultra detailed Image Credit: javierjrueda 13. Casual White Shirt for Women This casual white shirt exudes confidence and style, perfectly paired with blue jeans. Ideal for women seeking a simple, fashionable look, it’s a versatile shirt that showcases both elegance and casual charm. The image features a beautiful young woman wearing a white shirt and blue jeans. She is posing for the camera, with her hand on her hip and her other hand on her head. The woman appears to be confident and stylish, showcasing her outfit and her overall appearance. The scene takes place in a setting with a brick wall in the background, adding an urban touch to the image. Image Credit: JBlack16062205 14. Halloween Inspired T-Shirt Design Blending seasonal charm with spooky flair, this Halloween-inspired T-shirt design stands out. Overall, the look feels warm yet eerie, using layered elements and vibrant colors. Combine Halloween, fall, autumn and Christmas materials to create a design to print on a t-shirt. Image Credit: smk 15. Henley Neck Design Shirt This Midjourney AI-generated henley neck shirt features a dark red color with a round collar and button placket. Made from soft cotton, it offers a comfortable fit for casual summer fashion. Bmentra solid color men&#8217;s short-sleeved t-shirt, dark red henley neck design with round collar and buttoned pl. Universe shirt top for male casual summer fashion , cotton material, in the style of mockup, white background, studio lighting, product photography. Image Credit: rhoksane &#8211; Hermes solutions 16. Anime Style Sweatshirt Design The sweatshirt showcases a black design featuring a skeleton graphic, with &#8220;Ddistone Aqua&#8221; in white graffiti-style lettering. It has a casual, relaxed fit for everyday wear. It&#8217;s ideal for those who appreciate anime-inspired streetwear with an edgy, urban feel. Sweatshirt design in the anime style featuring a male character with brown hair and blue eyes wearing a black sweatshirt that has a skeleton on it against a grey background. &#8220;Ddistone Aqua&#8221; is written in white graffiti-style lettering in an illustrated font with a dark outline in the middle of his chest as text. He also wears long sleeves and gloves with tattooed designs, with two sleeve tattoos, one on each arm. On both arms he holds headphones with tattoo art. There is some smoke around him. With an anime aesthetic. &#8211;ar 64:59 Image Credit: museng000 17. Seventh Deadly Sin Sweatshirt This sweatshirt features a minimalistic design focused on the seventh deadly sin. The front showcases the number 7 while the back highlights a subtle peacock graphic representing the sin. Make me a sweatshirt with the design of the seventh deadly sin on the front so that there is nothing but the roman number seven and on the back the design of the seventh sin (and the peacock) and make it minimalistic &#8211;v 6.0 Image Credit: mitra_06521 18. Minimalistic White Sweatshirt This white sweatshirt features high-quality fabric with a clean, crisp look. It’s displayed in a mockup with subtle shadow effects, highlighting its texture and details. IMAGE_TYPE: Product mockup photography | GENRE: Fashion | EMOTION: Minimal | SCENE: A hanging fashion white sweatshirt positioned for mockup design, showcasing its high resolution and high-quality fabric, with a subtle shadow effect. The white sweatshirt is displayed against a neutral background. | ACTORS: None | LOCATION TYPE: Indoor setting | CAMERA MODEL: Canon EOS 5D Mark IV | CAMERA LENS: 50mm f/1.2 | SPECIAL EFFECTS: Soft lighting | TAGS: product mockup photography, fashion, minimal, white sweatshirt, mockup design, high resolution, high quality, shadow effect, &#8211;v 6.0 &#8211;s 250 &#8211;style raw Image Credit: Ruth 19. Cream White Colored Sweatshirt This cream-white sweatshirt features a cute slime design with Mexican folklore inspiration. The flat illustrations blend light beige and amber tones, evoking a cozy Halloween theme. Cute slime Gildan 18000 cream white colored sweatshirt design little maginov, in the style of mexican folklore &#8211; inspired, tibor nagy, light beige and amber, lettering mastery, terry redlin, tightly composed scenes, flat illustrations, themed around halloween and wine Image Credit: deliama 20. Folded Crewneck Sweatshirt for Women This folded crewneck sweatshirt radiates a rustic charm with its cozy design and high-quality fabric. Positioned for mockup, it highlights subtle shadows and fine details. Also, the backdrop of leaves, candies, and pumpkins, makes it perfect for fall-inspired fashion collections. IMAGE_TYPE: Product mockup photography | GENRE: Fashion | EMOTION: Rustic | SCENE: A folded crewneck sweatshirt positioned for mockup design, showcasing its high resolution and high-quality fabric, with a subtle shadow effect. The crewneck sweatshirt is displayed against a backdrop of a leaves, candies and pumpkins with a white tile surface in the background. | ACTORS: None | LOCATION TYPE: Indoor setting | CAMERA MODEL: Canon EOS 5D Mark IV | CAMERA LENS: 50mm f/1.2 | SPECIAL EFFECTS: Soft lighting | TAGS: product mockup photography, fashion, stylish, rustic, fall-season crewneck sweatshirt, mockup design, high resolution, high quality, shadow effect, whit tile, halloween, white ceramic tile, rustic, background &#8211;ar 9:12 &#8211;v 5.2 &#8211; Variations (Strong) Image Credit: deliama_01670 21. Christmas Tree With a Vintage Poster Design This Midjourney shirt design highlights a festive Christmas tree in a vintage poster style with warm sepia tones. The graphic uses vector contours and a clean white background for a crisp, classic look. Overall, it’s perfect for creating nostalgic holiday vibes. A festive Christmas tree with a vintage poster art style, conveying a timeless quality and charm, surrounded by a warm, sepia-toned ambiance. no sweatshirt, Sweatshirt design graphic, vector, contour, white background. Image Credit: 911roro 22. Orange and Black Polo Shirt Design This AI-rendered polo shirt design combines orange and black with minimalist yellow accents for a clean, professional look. Also, there&#8217;s a space for the company logo to be placed in the center at chest level. Moreover, with simple details and a sharp color scheme, it’s designed for both style and functionality. Polo shirt design front and back view mockup, white background, orange and black color combination with small yellow accents on the collar area, company logo printed in centered at chest level, minimalist style, simple details, professional photography, studio lighting, high resolution rendering &#8211;s 500 &#8211;v 6.0 Image Credit: pinfei 23. Cuban Collar Shirt This design blends minimalist vibes with futuristic aesthetics for spring-summer 2025. Also, its modern, sleek look is elevated by collaboration between Yohji Yamamoto and Alexander McQueen&#8217;s team. Cuban collar shirt design spring summer collection 2024, happy models, 3 to 5 models, hd, futuristic, minimilist, yohji Yamamoto collabs with alexander MCQ designer, photoshoot, models standing futuristic architecture , full HD camera, Mark 1 camera. Image Credit: abhishek.bhardwaz 24. V-Neck Shirt Design for Women This V-neck shirt design showcases summer elegance with soft floral visuals. It&#8217;s also imagined in breathable viscose fabric that feels lightweight and flowy. Perfect for warm weather, it combines comfort and style. a v neck shirt design, for summer, floral visuals, viscose fabric &#8211;v 6.0 &#8211; Upscaled (Subtle) Image Credit: salops 25. Modern Baseball-Themed Shirt Design This sleek baseball-themed shirt combines modern style with athletic vibes. Also, it includes a bold vertical stripe that symbolizes a pitcher’s tunnel vision. A sleek, modern baseball-themed T-shirt design, black shirt with a bold vertical white stripe down the center representing a pitcher’s tunnel perspective, the phrase ‘Tunnel Vision’ in clean typography slightly distorted to convey speed and motion, minimalist and edgy design, tailored for teenage athletes, high contrast, sporty aesthetic, premium fabric texture, studio lighting. Image Credit: darkhorse1982 So far, you&#8217;ve explored various Midjourney prompts for shirt design. These ideas will help you jump-start your apparel design projects. Since you&#8217;re a Midjourney enthusiast, you must read about the best prompts for character design and movie posters . Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://www.thoughtworks.com/en-th
Thoughtworks Thailand | A leading technology consultancy | Thoughtworks Thailand Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close Thailand | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai Thailand | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Benefits See how we take care of our people Learning and Development Explore how we support career growth Meet our people About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights News and stories We&#39;ve achieved the AWS Agentic AI Specialization to accelerate autonomous enterprise innovation Learn more Tool Assess your AI readiness Get started Blog Mainframe modernization: An illustrated guide Read now Publication Catch the latest Tech Radar Explore this edition Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now Featured client stories Legacy modernization GovTech: Evolving Singapore's National Digital Identity platform Learn more AI and ML Terrascope: Smart decarbonization platform creates a credible pathway to Net Zero Learn more AI and ML Airpro: Streamlining Airpro's shift planning: enhancing efficiency with data-driven optimization Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://mspoweruser.com/midjourney-prompts-graphic-design/
Best Midjourney Prompts for Graphic Design for 2025 and Beyond Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates Best Midjourney Prompts for Graphic Design: Illustrations, Logos, &amp; More Home » AI Tamal Das Tech Analyst AI 13 min. read Updated on February 13, 2025 These are the best Midjourney prompts for graphic design covering various domains, like product packaging, branding, logos, concept designs, and more. Midjourney is a top-tier AI image generator that creates realistic and creatively unique images from text prompts. It’s great for overcoming creative blocks or generating reference images to spark new ideas. Below, I&#8217;ll show you some great tips to get started. Best Midjourney Prompts for Graphic Design Check out these ideas you can use in various professional and personal projects. 1. Coffee Brew Packaging Design If you&#8217;re a product designer, startup owner, business branding expert, or creative designer, this Midjourney prompt will help you create a unique design for coffee cups. It has abstract designs and a black-and-white background to make the best go-to cups. Papercraft lightbox coffee packaging, branding graphic design style, black and white background with a pattern of large letters of the word &#8220;L i g H t&#8221; in bold lettering written all over the page, high contrast, screen print aesthetics. &#8211;personalize ute1zhl &#8211;s 200 &#8211;style raw. Image Credit: It_s_all_good @Discord 2. Vector Logo Design Idea Think sleek, bold, and retro! The E7 Chesley logo blends sharp blue-green hues with a checkmark that pops like Superman’s ‘S’. Clean lines and flat design make it perfect for branding, while the retro-style font adds flair. vector logo for company called &#8220;E7 Chesley&#8221; with the letter e and an E as part of it, in blue green colors with check mark inside that is made up to be used like superman&#8217;s &#8216;S&#8217; on shirt or brand , vector graphic design with text reading retro style font saying &#8220;P rar Yarkechk&#8221;, on light background, 2d flat icon, simple clean lines, vector graphics, logo for business group named spud k Representatives &#8211;ar 128:65 &#8211;s 250. Image Credit: zia ur rehman @Discord 3. Ice-Cream Branding Design Idea Are you an owner of an ice cream brand or working on a business branding project involving ice creams? You can use this prompt or tweak it a little to design the most unique brand design ideas using Midjourney. Modern ice-cream branding, graphic design style, background with a pattern of large letters of the word &#8220;Othello&#8221; in bold lettering written all over the page, high contrast, screen print aesthetics. &#8211;tile &#8211;sref 3845913239 770 3211072856 &#8211;niji 6 &#8211;stylize 500 &#8211;personalize w4qquyu. Image Credit: It_s_all_good @Discord 4. Retro Toy Graphic Design If you&#8217;re looking for a cool and retro toy design idea for your merchandise startup business, check out this Midjourney prompt. It&#8217;ll generate an AI image of a Power Ranger watch with text for branding purposes. The default text is Crystal Bay which you can change. 80s toy, red and silver Power Ranger watch with a white screen that says &#8220;Crystal Bay (Training Township edited in the style of an early digital artist using early software used in web design)&#8221;. On each side is a different color symbol for one or more energy bar colors: a red diamond-shaped icon for a red beam, a yellow triangle facing up for green vines, a blue square representing a water surface, and a grey circle for earth dirt. The band has a large black plastic strap with a small gold metal pin fastening. &#8211;style raw. Image Credit: HustleHue @Discord 5. Graphical Illustration of a Futuristic App This Midjourney prompt for graphic design helps you create a concept mobile app idea with futuristic color palettes. The UI/UX design resembles that of Apple along with placeholder buttons for AI, brand name, etc. new &#8221; mobile app design for an AI voice assisitant called Stolz pne, which uses generative ai technology to create personalized artwork and graphics. The color palette is dark green with light red highlights. In the upper left corner of screen there&#8217;s text that says &#8220;SPainter&#8221;, in the top center section it has two buttons one labeled &#8216;AI&#8217; , second button l?enders name S Anchorid , underneath on bottom right hand side below circular logo you can see apple icons. A simple single element UI icon symbol representing AI from Apple design language. On page &#8221; New&#8221;. At the middle top of graphic there should be &#8211;ar 9:16 Image Credit: designer-fp @Discord 6. Graphic Design for a Taxi Brand Logo This is a sleek logo with nostalgic objects like lighthouses, seagulls, and nautical touches like anchors or captain’s hats. With a pro color palette of blue, yellow, and white, this design is perfect for business cards, car decals, and mobile icons. Design a sophisticated logo for &#8216;Captain Taxi&#8217; that highlights a 2012 black Peugeot 5008 and the scenic beauty of Nida, Lithuania. Include elements like lighthouses or seagulls to reflect the coastal location, combined with nautical symbols such as a captain&#8217;s hat or anchor. Use a professional color scheme of blue, yellow, and white to make the logo stand out. The final design should be versatile enough for business cards, car decals, and a mobile app icon. Image Credit: sangas @Discord 7. Car Rally Event Sticker Design Are looking for a vintage-inspired graphic design or cartoons for a classical car rally event? Take a look at this Midjourney prompt that includes retro fonts, subtle textures, and more. Create a vintage-inspired sticker design for a classic car rally event, with a primary red color as the main background. The design should have an elongated horizontal format, evoking a sense of nostalgia. At the center, feature a large, stylized number &#8216;7&#8217; that captures the essence of vintage racing numbers. Flanking this number, place the year &#8216;2024&#8217; in a bold, retro font on both sides to maintain symmetry. Above and below the central number, include the text &#8216;OLD TIMER CAR RALLY&#8217; in a classic serif font, which should be bold and easily legible against the red background. Emphasize the text with white outlines to ensure it stands out. The overall shape of the sticker should be a wide rectangle with rounded corners, reminiscent of old racing car decals. Add subtle textures and slight wear-and-tear effects to the design to give it an authentic, weathered look, as if the sticker has been cherished over many years &#8211;ar 18:9 Image Credit: SpacePudding @Discord 8. Angry Yellow Tiger as Car Decals If you&#8217;re thinking of a fierce, stylized tiger in yellow and pink with bold purple stripes for a racing car decal, you&#8217;re in luck. This prompt creates a car decal design with a modern graffiti style. Vector illustration of an abstract angry yellow and pink tiger with purple stripes in the style of modern graffiti. The tiger graphic is very stylised The vector graphics are on a flat background, with lines and a dynamic composition. The colors used are yellow, pink, dark grey, dark purple, white and cyan. This could be used as a race car decal warp. &#8211;ar 3:1 Image Credit: fredsmotion @Discord 9. Graphic Design of a Concept Car This is a Midjourney-based graphic design idea for a futuristic sports car that blends nature’s beauty with cutting-edge design. With soft purples, pinks, and metallic silvers, the glossy body reflects both sophistication and organic charm. A sleek and futuristic sports car design inspired by nature, incorporating the elegance and curves of the foxglove flower. The car features smooth, aerodynamic lines that flow seamlessly across its body, resembling the tubular shape of the foxglove petals. The exterior is glossy and modern, with a gradient color scheme of soft purples, pinks, and metallic silvers. The headlights are sharp and elongated, mimicking the flower&#8217;s pointed tips, while subtle organic patterns are etched into the body for added detail. The wheels have petal-like spokes, enhancing the floral-inspired aesthetic. The background is a clean, minimal studio setting, highlighting the car&#8217;s unique design and natural elegance &#8211;ar 6:5 &#8211;stylize 250 &#8211;v 6.1 Image Credit: Digital.Dream @Discord 10. Futuristic Coffee Mug Design In the age of generative AI, futuristic designs are in trend. One such example is this coffee mug design that you can use to mass-produce concept coffee mugs for art and crafts enthusiasts. A studio shot of a coffee mug designed by BRAUN in the style of Sam Kaplan, Zachary Goulko, leika, wes anderson, 40mm anamorphic &#8211;no face, logo, fonts, letters, type, names, description, writting, letters, human &#8211;v 4 &#8211;upbeta Image Credit: thalesmonteiro @Discord 11. Intricate Tattoo Design Idea How about a tattoo design of a bat with intricate, outstretched wings? It’s drawn with gothic linework, shading, and symmetrical balance. A highly detailed tattoo design of a bat with outstretched wings, drawn in a gothic and mystical style. Intricate linework and shading, symmetrical composition, soft glowing highlights, surrounded by ornamental filigree and crescent moons. Black and gray ink with subtle hints of silver. A perfect blend of elegance and mystery. &#8211;ar 9:16 &#8211;v 6.1 Image Credit: ???? @Discord 12. Japanese Woodblock Print Design This Japanese woodblock-inspired design showcases purple peonies with green leaves on an olive background. The artwork, perfect for jewelry designs , has a simple, refined look with two vertical stripes and a white &#8220;C&#8221; logo. An illustration of purple peonies with green leaves on an olive background, in the style of Japanese woodblock prints. The design uses clean lines and subtle shading to highlight details, with a flat vector appearance that focuses on simplicity without any shadows or highlights. The illustration is drawn on top of two vertical stripes for use as a smartphone wallpaper. A white &#8220;C&#8221; logo appears at one end of each stripe. The artwork has clean edges, a minimalistic style, and is presented as vector art. &#8211;ar 9:16 Image Credit: Kilina09 @Discord 13. Frozen Food Branding Design Are you looking for a fresh idea to market your frozen food products? Use this Midjourney prompt for graphic design to create unique web apps and product packaging designs that your customers will like. Web app interface design with a warm, empowering feel, combining soft gradients of light orange and light blue, designed for kids and teens battling bullying. Use gentle, illustrated icons and rounded cards that provide a welcoming, safe atmosphere. Include friendly, accessible fonts and layouts with soft light and shadows. The design should evoke a sense of calm support and encouragement., ui, ux, web design, desktop design, sass https://s.mj.run/t74Db4q97JU &#8211;ar 16:9 &#8211;iw 2.0 &#8211;no nature, trees, mountains &#8211;niji 6 Image Credit: dama_pack @Discord 14. Graphic Design Idea for UI/UX Design This mobile or web app interface design creates a calming space for kids and teens facing bullying. Soft gradients of orange and blue bring warmth, while illustrated icons and rounded cards add a friendly, safe touch. Web app interface design with a warm, empowering feel, combining soft gradients of light orange and light blue, designed for kids and teens battling bullying. Use gentle, illustrated icons and rounded cards that provide a welcoming, safe atmosphere. Include friendly, accessible fonts and layouts with soft light and shadows. The design should evoke a sense of calm support and encouragement., ui, ux, web design, desktop design, sass https://s.mj.run/t74Db4q97JU &#8211;ar 16:9 &#8211;iw 2.0 &#8211;no nature, trees, mountains &#8211;niji 6 Image Credit: IvoK1 @Discord 15. Social Media Posts for Sales Events This is a cozy, festive vibe for your social media post, inviting your audience to shop your &#8220;End of the Year SELF-CARE&#8221; sale. Think warm, elegant designs with an envelope and wax seal, surrounded by holiday motifs like gift boxes. A social media post design for &#8220;End of the Year SELF-CARE cool vacation, intellectual, and business gift&#8221; that features an envelope with a wax seal, surrounded by various holiday-themed items like presents or gift boxes. The typography text says &#8220;Cozy holiday invitation to end your last sale&#8221;, and other festive decorations are included. The background is a collage of different textures and colors representing winter, such as snowflakes, reds, whites, greys, and blacks. &#8211;ar 51:64 &#8211;style raw &#8211;s 750 &#8211;p bstmu1y Image Credit: k @Discord 16. Conceptual Digital Artwork A sleek digital artwork featuring interconnected objects as abstract shapes and icons, with glowing lines symbolizing power and influence. The design embraces a minimalist, modern style with smooth gradients, high contrast, and clean lines. A conceptual digital artwork of interconnected stakeholders represented as abstract shapes and icons, surrounded by glowing lines symbolizing influence and power dynamics, no text, clean modern design, with a neutral gray gradient background. Created using: infographic design style, clean lines, high contrast, smooth gradients, vector art, hd quality, minimalism &#8211;ar 16:9 &#8211;v 6.0 Image Credit: Tocq @Discord 17. Online Advertising Concept Illustration If you need to produce creative materials for an online advertising campaign you should use this Midjourney prompt. It includes appropriate objects and design materials reflecting the digital marketing niche, like social media site logos, website interfaces, mobile app interfaces, and more. An illustration of a woman in her office multitasking, . The other two sides show social media icons like YouTube, Instagram and Facebook. In the background we can see some illustrations representing digital marketing, online advertising and visual identity creation processes. In the style of flat style, vector graphic. White background. Clean lines. No shadows. Minimalistic, green and yellow-gold color palette &#8211;ar 16:9 &#8211;s 750 &#8211;v 6.0 Image Credit: Choco @Discord 18. Editorial Illustration Graphic Design Are you envisioning an editorial illustration featuring a confident Black woman radiating grace and empowerment? This is the generative AI prompt you can use on Midjourney. Editorial illustration. A confident and stylish Black woman exuding grace and empowerment, with a radiant smile and a poised demeanor. She is surrounded by vibrant, uplifting elements such as glowing abstract patterns, lush tropical plants, and colorful geometric shapes. Her outfit is bold and contemporary, blending rich textures and vibrant hues. The scene is illuminated with soft, warm light that enhances her features and creates a dynamic, joyful atmosphere, in the style of Adrian Tomine. &#8211;ar 2:3 &#8211;sref 1563657920::1 3264405804::1 3008503465::2 &#8211;s 250 &#8211;v 6.1 Image Credit: RainOn @Discord 19. Marketing Material Illustration A serene marketing illustration showcasing a white glass singing bowl surrounded by green leaves and moss. The elegant, minimalist design makes it ideal for beauty product advertising and branding. A white glass singing bowl surrounded by green leaves and moss on an isolated background with circular lighting, creating a natural and organic atmosphere for beauty product advertising, product photography, and branding designs. The composition includes the elegant and minimalist design of the grassy surface and the detailed textures of the ferns and stones, providing a visually appealing representation suitable for commercial use in digital marketing materials or packaging visuals. Image Credit: BeLoveLDM @Discord So, these are some of the Midjourney prompts for graphic design that you can use to create functional design ideas. You can also tweak the prompt your way to fit the output expectations. Since you&#8217;re into AI image generation, feel free to also look at these Midjourney prompts for interior design and logo prompts . Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://www.thoughtworks.com/en-in
Thoughtworks India | A leading technology consultancy | Thoughtworks India Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close India | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai India | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Learning and Development Explore how we support career growth Benefits See how we take care of our people Welcome message from Mike Sutcliff About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights News and stories We&#39;ve achieved the AWS Agentic AI Specialization to accelerate autonomous enterprise innovation Learn more Tool Assess your AI readiness Get started Blog Mainframe modernization: An illustrated guide Read now Publication Catch the latest Tech Radar Explore this edition Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now Client success stories Legacy modernization Leading automotive manufacturer: Accelerating mainframe modernization with genAI Learn more Data engineering ING Bank: Data modernization with data mesh Learn more Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together we make extraordinary impact. Graduate careers Begin your career with us. All you need is a love for technology and a passion for learning. Explore open roles for graduates Lateral and alumni careers If you're looking to make a change and have an extraordinary impact, look no further. Boomerangs are plenty at Thoughtworks and we love welcoming back familiar faces from our alumni network. Explore open roles for laterals Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Corporate Social Responsibility Policy Policy of Equal Opportunity, Non-Discrimination and Anti-Harassment at the Workplace Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://www.thoughtworks.com/en-ca
Thoughtworks Canada | A leading technology consultancy | Thoughtworks Canada Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close Canada | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai Canada | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Learning and Development Explore how we support career growth Benefits See how we take care of our people About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights News and stories We&#39;ve achieved the AWS Agentic AI Specialization to accelerate autonomous enterprise innovation Learn more Tool Assess your AI readiness Get started Blog Mainframe modernization: An illustrated guide Read now Publication Catch the latest Tech Radar Explore this edition Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Articles Blogs Books Podcasts Preference center Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://newrelic.com/fr/platform/mobile-monitoring#main-content
Monitoring des applications mobiles | New Relic Passer au contenu principal Monitoring des applications mobiles De l'expérience du frontend aux métriques d'exécution du backend, obtenez des informations en continu sur les performances pour toutes vos applications mobiles avec la plateforme d’observabilité tout-en-un. Démarrer gratuitement​ ​Obtenir une démo​ QU&#039;EST-CE QUE LE MONITORING MOBILE ? Assurez l&#039;exécution harmonieuse de toutes vos applications mobiles grâce à la visibilité de bout en bout Corrélez le backend et le frontend Profitez d'une vue unifiée de toutes vos applications pour repérer où l'expérience utilisateur peut être améliorée Résolvez les problèmes plus vite Recevez immédiatement des alertes sur les erreurs et la latence des applications pour les résoudre avant d'impacter les utilisateurs. Monitorez iOS et Android Monitorez les applications sur les plateformes et identifiez les erreurs de code avec notre prise en charge d'un framework hybride. Améliorez facilement les KPI Corrélez automatiquement les performances de code avec des indicateurs d'activité comme la rétention des utilisateurs. Observez les métriques du frontend et du backend en contexte Obtenez un aperçu global immédiat de la relation entre les performances de votre application et ses services connectés. Connectez facilement les données d'expérience utilisateur aux métriques du backend lorsque vous examinez les problèmes.&nbsp; Découvrez les performances HTTP avec le temps de réponse moyen pour accélérer la vitesse de l'application. Obtenez une vue de bout en bout sur le parcours de vos utilisateurs sur appareils mobiles. Analysez l'intégralité du parcours des utilisateurs sur appareils mobiles pour identifier les points sensibles et apporter des améliorations data‑driven. Faites facilement le suivi de ce qui est important pour vous avec des parcours utilisateur prêts à l'emploi, dont des métriques personnalisées. Repérez et réparez les plantages rapidement avec des analyses détaillées contextualisées pour toutes vos applications mobiles. Obtenez une vue de bout en bout sur le parcours de vos utilisateurs sur appareils mobiles. Analysez l'intégralité du parcours des utilisateurs sur appareils mobiles pour identifier les points sensibles et apporter des améliorations data‑driven. Faites facilement le suivi de ce qui est important pour vous avec des parcours utilisateur prêts à l'emploi, dont des métriques personnalisées. Repérez et réparez les plantages rapidement avec des analyses détaillées contextualisées pour toutes vos applications mobiles. Résolvez les problèmes plus rapidement et assurez la satisfaction de vos clients Obtenez immédiatement des informations détaillées sur les plantages , les exceptions traitées et les échecs réseau.&nbsp; Ajoutez des fils d'Ariane (breadcrumbs) d'événements aux workflows, tels que la connexion ou le panier, pour voir exactement où un plantage s'est produit. Exposez les erreurs et les problèmes de latence avec les alertes dans l'application, avant qu'ils n'impactent les utilisateurs. Monitorez les applications hybrides dans React Native , Flutter , Cordova , Ionic et Xamarin Monitorez l'impact des problèmes pour les utilisateurs iOS et Android et apportez les modifications dans une même base de code. Collectez les données de plantage et de trafic réseau en utilisant des composants natifs, puis analysez-les dans un seul et même dashboard. Simplifiez le développement avec des informations détaillées sur les erreurs JavaScript, le tracing distribué, etc. Connectez les données des performances du code aux KPI commerciaux Concentrez les efforts des ingénieurs en corrélant les performances du code avec les KPI clés comme la rétention des utilisateurs.&nbsp; Définissez les métriques et alertes personnalisées pour les KPI comme l'engagement des utilisateurs, les taux de conversion et le chiffre d'affaires.&nbsp;&nbsp; Obtenez des données historiques pour repérer les problèmes qui impactent les utilisateurs et pour améliorer les développements futurs avec Pathpoint . Report Doubling down: A 2x DEM Leader New Relic named a Leader in the 2025 Gartner® Magic Quadrant™ for Digital Experience Monitoring (DEM)  Read Report Êtes-vous prêt à lancer le monitoring des applications mobiles rapidement&nbsp;? C'est facile grâce à nos intégrations instantanées pour les services cloud, les outils et les services. Voir les 780+ intégrations iOS Voir l&#039;intégration Android Voir l&#039;intégration Cordova Voir l&#039;intégration Xamarin Voir l&#039;intégration Plus de 30 outils. Une seule plateforme. Un prix unique. Démarrer gratuitement Voir les tarifs Consultez ces ressources pour en savoir plus Support multiplateforme avec React Native et le monitoring des applications mobiles Lire le blog Monitorez votre application mobile React Native Démarrer Si votre entreprise s&#039;appuie sur les appareils mobiles, vous avez besoin du tracing distribué Lire le blog Lancez-vous gratuitement dès aujourd'hui Démarrer gratuitement Obtenir une démo Search toggle Main navigation menu, 6 items Rechercher Submit Plateforme Plateforme d’observabilité intelligente Découvrir la plateforme APM APM 360 Observabilité d&#039;entreprise eAPM Monitoring SAP Serverless Transaction 360 Sécurité Test interactif de sécurité des applications (IAST) Security RX FinOps Intelligence Coûts du cloud Monitoring de l&#039;expérience numérique Monitoring des utilisateurs réels pour navigateurs Monitoring des utilisateurs réels pour mobile Session Replay Intelligence Streaming vidéo et publicitaire Synthetics Monitoring de performance web Intelligence Intégrations agentiques AIOps Monitoring de l&#039;IA Moteur Intelligence New Relic AI Infrastructure Monitoring AWS Cloud Monitoring Azure Cloud Monitoring des performances de bases de données Monitoring Google Cloud Monitoring d&#039;infrastructure Monitoring de Kubernetes Monitoring réseau Monitoring Prometheus Logs Gestion des logs Productivité des développeurs CodeStream Intelligence Architecture de services Capacités de la plateforme Alertes Suivi des changements Dashboards Entity Explorer Errors Inbox Contrôle de la flotte Intégrations OpenTelemetry Contrôle de pipeline Files d&#039;attente et flux de données Tarification Tarification à l&#039;utilisation Tarification basée sur l&#039;utilisation pour l&#039;observabilité full-stack — plateforme tout-en-un. Voir la tarification Gratuit Inscrivez-vous pour bénéficier d'une licence Free Tier gratuite à vie et 100&nbsp;Go/mois d'ingestion de données. 100&nbsp;Go d'ingestion de données Obfuscation automatique des logs Utilisateurs Core et Basic illimités 1 utilisateur Full Platform gratuit Plus de 30 capacités Rétention des données Démarrer gratuitement Standard Pour les petites équipes souhaitant commencer à utiliser l'observabilité. Limité à 5 utilisateurs Full Platform Assistance par tickets offerte SLA de réponse d'assistance de 2 jours ouvrables Authentification unique SAML Tarification Standard Pro Pour les équipes comptant plus de cinq ingénieurs et ayant des workloads complexes. Aucune limite au nombre d'utilisateurs Full Platform provisionnés Plusieurs options d'engagement SLA de réponse d'assistance initiale critique de 2&nbsp;heures Éligibilité à Data&nbsp;Plus Tarification Pro Enterprise Pour les organisations à l'échelle qui souhaitent une sécurité et une assistance avancées. Tout Pro avec en plus&nbsp;: Éligibilité à FedRAMP Moderate et HIPAA avec Data&nbsp;Plus Acheminement prioritaire des tickets SLA de réponse d'assistance initiale critique de 1&nbsp;heure Tarification personnalisée Solutions Les meilleures marques du monde choisissent New&nbsp;Relic Témoignages de nos clients Études de cas Monitoring de l&#039;expérience numérique Passez de la réactivité à la proactivité DevOps Consolidation des outils Open source Secteurs Retail et e-commerce Santé Médias, spectacles, divertissements ou loisirs New Relic pour les startups Organisations à but non lucratif Secteur public Technologies Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Monitoring Prometheus Monitoring SAP ServiceNow New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Enterprise Développeurs Développeurs Monitoring simple de Kubernetes Simplifiez le monitoring Kubernetes avec l&#039;opérateur New Relic Monitoring des applications sur mobile Monitorez les applications mobiles en quelques minutes avec l&#039;installation de quickstarts. Agent New Relic Browser Instrumentation personnalisée avec l&#039;agent de navigateur New Relic. 1 2 3 Documentation populaire Démarrer l&#039;ingestion des données Créer des dashboards personnalisés Examiner des requêtes NRQL Transférer des logs avec un agent d&#039;infrastructure Voir toute la documentation Plus de 780 intégrations Démarrer gratuitement. Python Installation Java Installation PHP Installation Ruby Installation Voir toutes les intégrations New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Ressources Qui sommes-nous&nbsp;? Leadership Recrutement Développement sécurisé New&nbsp;Relic for Students Espace presse ESG Forum de la communauté Assistance technique Témoignages de nos clients Des vidéos et études de cas montrent les stratégies gagnantes des entreprises grâce à l&#039;observabilité. Bibliothèque de ressources E-books, fiches techniques et livres blancs. Blog New Relic Actualité, conseils et meilleures pratiques du secteur. Événements et webinaires Rejoignez-nous à un événement ou une formation. New Relic University Parcours d&#039;apprentissage et formations. Calculateur de la valeur de l&#039;observabilité Découvrez la valeur de New Relic pour votre entreprise. New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 1 2 3 Search toggle Se connecter Se connecter Démarrer gratuitement Obtenir une démo Se connecter Se connecter Démarrer gratuitement Obtenir une démo ENTREPRISE ENTREPRISE Qui sommes-nous ? Recrutement Leadership Impact social Code de conduite ESG Portail des fournisseurs Principes d&#039;IA PRODUIT PRODUIT Intégrations Plateforme Sécurité VALEUR VALEUR Tarification Free Tier New Relic Comparatif New Relic/Datadog Comparatif New Relic/Dynatrace Comparatif New Relic/Splunk RESSOURCES RESSOURCES Blog Études de cas clients Forum de la communauté Documentation Communiqués de presse New Relic University Programme de partenariat Prévisions 2025 sur l&#039;observabilité Professional Services FAQ FAQ Qu’est-ce que le monitoring d’infrastructure ? Qu&#039;est-ce que l&#039;observabilité ? Qu’est-ce que Kubernetes ? Six étapes pour obtenir l&#039;observabilité d&#039;entreprise Les meilleures pratiques de gestion des logs Un seul outil suffit pour le monitoring d&#039;infrastructure et l&#039;APM Guide rapide pour démarrer avec New Relic Raisons pour lesquelles vous avez besoin d&#039;IAST Contactez-nous Conditions de service Politique DMCA Politique de confidentialité Conditions du site web Vos choix de confidentialité Cookies Déclaration sur l&#039;esclavage moderne Avis sur les brevets Français English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. Tous droits réservés. Comment New Relic peut-il aider le monitoring de votre stack? Démarrez gratuitement avec 100 Go + 1 utilisateur. Démarrer Suivez notre visite guidée du produit. Obtenir une démo Tarification simple et transparente Service des ventes
2026-01-13T09:30:15
https://newrelic.com/jp/sign-up-japan
無料サインアップ | New Relic メインコンテンツへ サインアップ 無償でNew Relicが提供する基本的なフルスタックオブザーバビリティを利用可能です。クレジットカードの登録も必要ありません。 ※ このフォームは 仮登録フォーム です。入力後に表示されるURLまたは届くEメールより、本登録をお願い致します。また、 仮登録と本登録は同じメールアドレス をご入力ください。 無料アカウントでは以下の内容が含まれています: 無料ユーザーアカウント 月間100GBまでのデータ容量。全機能にアクセスできるフルアクセスユーザー1名 / ベーシックユーザーは無制限 メトリクス、ログ、イベント、トレースのすべてデータを統合可能なプラットフォーム ペタバイト規模のデータを高速で処理。月間100GBを超えた場合は有償アカウントへの移行手続き後、$0.40/GBドルで継続利用が可能 ソフトウェアスタック全体を可視化、分析し、迅速なトラブルシューティングを実現 APM、インフラストラクチャ監視、ログ監視、デジタルエクスペリエンス監視、AIOPsなど様々な機能を通じたフルスタックオブザーバビリティを提供 活用の手引き ◆ New Relic 導入手順書 New Relic のAPM、Infrastructure、Browser、Logsなど様々な機能の導入手順をご紹介します。 New Relicファーストステップガイド(導入資料集) ◆ New Relic 活用コンテンツ New Relic について学べるコンテンツを New Relic University として無償で公開しています。これから使い始める方も、既に習熟されている方も、お客様のペースで、お好きなところから始めて頂けます。 New Relic University 無償サインアップ 仮登録ありがとうございます。続いて本登録をお願い致します。 以下のボタン、またはご登録いただいたメールに届いたリンクより、サインアップのための本登録をお願いします。 ※ 仮登録と本登録は同じメールアドレスをご入力ください。 本登録はこちら Search toggle Main navigation menu, 6 items 検索 Submit プラットフォーム インテリジェントオブサーバビリティプラットフォーム プラットフォームについて知る APM APM 360 ビジネスオブザーバビリティ eAPM SAPモニタリング サーバーレス トランザクション 360 セキュリティ インタラクティブ・アプリケーション・セキュリティ・テスト(IAST) セキュリティRX FinOps クラウドコスト・インテリジェンス デジタル エクスペリエンス モニタリング ブラウザでのリアルユーザー監視 モバイルでのリアルユーザー監視 セッションリプレイ ストリーミングビデオと広告インテリジェンス 外形監視 ウェブパフォーマンス監視 インテリジェンス Agentic Integrations AIOps AI Monitoring インテリジェンスエンジン New Relic AI インフラストラクチャ AWSクラウド監視 Azureクラウド監視 データベースパフォーマンス監視 Googleクラウド監視 インフラ監視 Kubernetes監視 ネットワーク監視 Prometheus監視 ログ ログ管理 開発者の生産性 CodeStream サービスアーキテクチャ・インテリジェンス プラットフォームの機能 アラート Change Tracking(変更追跡機能) ダッシュボード エンティティエクスプローラー Errors Inbox フリート管理 インテグレーション OpenTelemetry パイプライン管理 キュー&amp;ストリーム監視 価格設定 シンプルで透明性の高い価格体系。 すべてがひとつのプラットフォームに集約された、フルスタックオブザーバビリティ向けの価格設定です。 価格設定について 無料 100GB/月のデータ量が含まれる、期間制限のない無料プランにサインアップしましょう。 100GBデータの取り込み 自動のログ難読化 無制限のベーシックおよびコアユーザー 1名の無料フルプラットフォームユーザー 30以上の機能へのアクセス データ保持期間 無料で始める Standard オブザーバビリティの開始を検討している小規模チームに。 フルプラットフォームユーザー5名まで チケットサポートが利用可能 SLA - 2営業日以内にサポート対応 SAMLシングルサインオン Standard価格設定を使用 Pro 5名以上の開発者と、複雑なワークロードに対応する必要のあるチームに。 プロビジョニングできるフルプラットフォームユーザーの上限なし コミットメントのオプション SLA - 重大な問題発生時2時間以内に初動サポート対応 Data Plusが利用可能 Pro価格設定を使用 Enterprise 高度なセキュリティとサポートが必要な大規模組織向け。 Proのすべての機能に加え Data PlusでのFedRAMP ModerateおよびHIPAA適格 優先チケットルーティング SLA - 重大な問題発生時1時間以内に初動サポート対応 詳細を問い合わせる 導入事例 世界トップクラスの企業はNew Relicを使用しています。 顧客の体験談 導入事例 デジタル エクスペリエンス モニタリング 受動的アプローチから応答的アプローチへ DevOps ツールの統合 オープンソース 業界 小売とeコマース ヘルスケア メディア・エンターテインメント New Relic for Startups 非営利 公共部門 テクノロジー Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Prometheus監視 SAPモニタリング ServiceNow New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む 1 2 3 イベント 開発者 開発者 簡潔なKubernetes監視 New RelicオペレーターでKubernetes監視を簡素化 モバイルアプリ監視 クイックスタートのインストレーションでハイブリッドなモバイルアプリを数分で監視 New Relic Browserエージェント New Relic Browserエージェントを使用したカスタム計装 1 2 3 人気のドキュメント データ取り込みの開始 カスタムダッシュボードの作成 NRQLクエリの調査 Infrastructureエージェントを使用したログの転送 ドキュメントを表示する 780+インテグレーション 無料プランから始めましょう Python インストール Java インストール PHP インストール Ruby インストール すべてのインテグレーションを見る New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む 1 2 3 リソース 企業情報 リーダーシップ 採用情報 セキュアな開発 New Relic for Students ニュースルーム ESG コミュニティフォーラム 技術サポート 顧客の体験談 ビデオとケーススタディでは、企業がオブザーバビリティで勝ち組になる方法を紹介しています。 リソースライブラリ 電子書籍、データシート、ホワイトペーパー New Relicのブログ 業界の最新情報、ヒント、ベストプラクティス イベント&ウェビナー 今後のイベントやトレーニングにぜひ参加してください。 New Relic University 学習パスとトレーニングコース オブザーバビリティ価値測定ツール New Relicが高めるビジネス価値の詳細はこちらから。 New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 1 2 3 Search toggle ログイン ログイン 無料で始める お問い合わせ ログイン ログイン 無料で始める お問い合わせ CORPORATE CORPORATE 会社概要 ニュースルーム 採用情報 セキュリティ ESG/Social Impact パートナープログラム New Relic Trailblazerとは? PRODUCTS PRODUCTS インテグレーション プラットフォーム セキュリティ PRICING PRICING 料金プラン New Relic無料ティア New RelicとDatadogの比較 New RelicとDynatraceの比較 New RelicとSplunkの比較 RESOURCES RESOURCES イベント&amp;セミナー ブログ お客様事例 New Relicを学ぶ (NRU) ProgateでNew Relicを学ぶ コミュニティフォーラム デモをリクエスト お問い合わせ 資料請求 TOPICS TOPICS New RelicとAI insideが語る事業貢献するエンジニアの育成と組織変革 オブザーバビリティとは? 開発者にとってのオブザーバビリティとは? MELTとは? IASTとは? SREとは? 外形監視とは? オブザーバビリティ調査 (全体:2024版) お問い合わせ サービス利用規約 DMCA ポリシー プライバシーポリシー ウェブサイト利用規約 プライバシーに関するお客様の選択 Cookie ポリシー 英国現代奴隷法への対応 Patent Notice 日本語 English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. All rights reserved
2026-01-13T09:30:15
https://www.thoughtworks.com/en-sg
Thoughtworks Singapore | A leading technology consultancy | Thoughtworks Singapore Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menu Close Singapore | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español Search Close Ask Tai Singapore | English Brazil Português Chile Español China Chinese Ecuador Español Germany Deutsch Spain Español What we do Go to overview Solutions Customer Experience Product Innovation Data Modernization Scaling AI AI-first Software Engineering Transformation Enterprise Platform Modernization Digital Application Management and Operations Who we work with Go to overview Industries Automotive Public Sector Energy Media and Publishing Retail and E-commerce Financial Services and Insurance Not-for-profit Travel and Transport Healthcare and Life Sciences Utilities Manufacturing and Engineering Insights Go to overview Publications and Tools Technology Radar An opinionated guide to today&#39;s technology landscape Perspectives A no-nonsense publication for digital leaders Decoder The business execs&#39; A-Z guide to technology Looking Glass Bringing the tech-led business changes into focus All Insights Articles In-depth insights to help your business grow Blogs Expert advice on design, engineering, AI and careers Books Explore our extensive library to keep learning Podcasts Conversations on the latest in business and tech Engineering Careers Go to overview Application Process What to expect as you interview with us Consultant Life Learn what life is like as a Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Search Jobs Find open positions in your region Stay Connected Sign up for our monthly newsletter Benefits See how we take care of our people Learning and Development Explore how we support career growth About Go to overview Contact Search Close Ask Tai Beyond the bottom line: Unlocking AI’s top-line growth Explore the report Thoughtworks awarded AWS Global Partner of the Year for data and analytics Learn more Design. Engineering. AI Delivering extraordinary impact by blending design, engineering and AI expertise What we do Thoughtworks is a visionary in 2025 Gartner® Magic Quadrant™ for custom software development services Learn more We've launched our alumni network Once a Thoughtworker,  always a Thoughtworker Join Afterworks Previous Next Pause Play 5 1 2 3 4 We are a global technology consultancy that delivers extraordinary impact by blending design, engineering and AI expertise.  Our commitment to design-led thinking, engineering excellence and innovation means we prioritize people, build teams with strong technical foundations and embed AI into every step of the process – not just as a tool, but as a mindset. It’s this approach that sets us apart, sparks bold ideas and empowers us to drive real, lasting innovation. We’re not preparing for the future – we’re defining it.     How can we help you? Latest insights News and stories We&#39;ve achieved the AWS Agentic AI Specialization to accelerate autonomous enterprise innovation Learn more Tool Assess your AI readiness Get started Blog Mainframe modernization: An illustrated guide Read now Publication Catch the latest Tech Radar Explore this edition Our clients count on us to handle what matters most Success stories Engineering effectiveness carsales: Driving excellence with operational transformation and AI-powered customer service Learn more Legacy modernization Docebo: Decommissioning legacy services to create a streamlined, scalable platform foundation Learn more AI and ML Bayer AG: Using AI to unleash the potential of preclinical data Learn more View more View less The GenAI guide to financial industry excellence 75% of GenAI pilots in banking never scale. Most financial institutions are experimenting with AI, but few are seeing measurable impact. The problem isn’t ambition. It’s architecture.   Legacy systems, siloed data and fragmented governance keep AI stuck at the pilot stage, while  locking up nearly 80% of IT budgets  just to maintain the past.   This guide shows how to change that. Read now Featured client stories Legacy modernization GovTech: Evolving Singapore's National Digital Identity platform Learn more AI and ML Terrascope: Smart decarbonization platform creates a credible pathway to Net Zero Learn more Platforms Spotify: Five year trusted partnership empowers Spotify’s Creator Marketplace Learn more View more View less Powerful partnerships   We take a customer-centric approach to everything we do, including our partnerships. Together we accelerate the scale, speed and outcomes we deliver for our clients. Find out more AI insights to move your business forward Blog When chatbots mislead: Three traps and fixes for AI customer service Read this blog Podcast What does an AI strategy with humans at the center look like? Listen to the podcast Blog AI assistance is a misunderstood revolution in software engineering. Here’s why Read this blog View more View less Ready to take on a new role? Jobs in technology can be ordinary. Clock in, clock out — lather, rinse, repeat. Who wants that? Definitely not us and definitely not you. Thoughtworkers break the mold. Join our Great Place to Work-Certified™️ team. Together, let’s be extraordinary Explore careers with us Transform your digital journey Get in touch Company About us What we do Partnerships Who we work with News Diversity, Equity and Inclusion Careers Contact us Insights Preference center Articles Blogs Books Podcasts Site info Privacy policy Accessibility statement Modern slavery statement Code of conduct Integrity helpline Sustainable procurement policy Speak up policy Connect with us © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://newrelic.com/jp/signup
無料サインアップ | New Relic メインコンテンツへ サインアップ 無償でNew Relicが提供する基本的なフルスタックオブザーバビリティを利用可能です。クレジットカードの登録も必要ありません。 ※ このフォームは 仮登録フォーム です。入力後に表示されるURLまたは届くEメールより、本登録をお願い致します。また、 仮登録と本登録は同じメールアドレス をご入力ください。 無料アカウントでは以下の内容が含まれています: 無料ユーザーアカウント 月間100GBまでのデータ容量。全機能にアクセスできるフルアクセスユーザー1名 / ベーシックユーザーは無制限 メトリクス、ログ、イベント、トレースのすべてデータを統合可能なプラットフォーム ペタバイト規模のデータを高速で処理。月間100GBを超えた場合は有償アカウントへの移行手続き後、$0.40/GBドルで継続利用が可能 ソフトウェアスタック全体を可視化、分析し、迅速なトラブルシューティングを実現 APM、インフラストラクチャ監視、ログ監視、デジタルエクスペリエンス監視、AIOPsなど様々な機能を通じたフルスタックオブザーバビリティを提供 活用の手引き ◆ New Relic 導入手順書 New Relic のAPM、Infrastructure、Browser、Logsなど様々な機能の導入手順をご紹介します。 New Relicファーストステップガイド(導入資料集) ◆ New Relic 活用コンテンツ New Relic について学べるコンテンツを New Relic University として無償で公開しています。これから使い始める方も、既に習熟されている方も、お客様のペースで、お好きなところから始めて頂けます。 New Relic University 無償サインアップ 仮登録ありがとうございます。続いて本登録をお願い致します。 以下のボタン、またはご登録いただいたメールに届いたリンクより、サインアップのための本登録をお願いします。 ※ 仮登録と本登録は同じメールアドレスをご入力ください。 本登録はこちら Search toggle Main navigation menu, 6 items 検索 Submit プラットフォーム インテリジェントオブサーバビリティプラットフォーム プラットフォームについて知る APM APM 360 ビジネスオブザーバビリティ eAPM SAPモニタリング サーバーレス トランザクション 360 セキュリティ インタラクティブ・アプリケーション・セキュリティ・テスト(IAST) セキュリティRX FinOps クラウドコスト・インテリジェンス デジタル エクスペリエンス モニタリング ブラウザでのリアルユーザー監視 モバイルでのリアルユーザー監視 セッションリプレイ ストリーミングビデオと広告インテリジェンス 外形監視 ウェブパフォーマンス監視 インテリジェンス Agentic Integrations AIOps AI Monitoring インテリジェンスエンジン New Relic AI インフラストラクチャ AWSクラウド監視 Azureクラウド監視 データベースパフォーマンス監視 Googleクラウド監視 インフラ監視 Kubernetes監視 ネットワーク監視 Prometheus監視 ログ ログ管理 開発者の生産性 CodeStream サービスアーキテクチャ・インテリジェンス プラットフォームの機能 アラート Change Tracking(変更追跡機能) ダッシュボード エンティティエクスプローラー Errors Inbox フリート管理 インテグレーション OpenTelemetry パイプライン管理 キュー&amp;ストリーム監視 価格設定 シンプルで透明性の高い価格体系。 すべてがひとつのプラットフォームに集約された、フルスタックオブザーバビリティ向けの価格設定です。 価格設定について 無料 100GB/月のデータ量が含まれる、期間制限のない無料プランにサインアップしましょう。 100GBデータの取り込み 自動のログ難読化 無制限のベーシックおよびコアユーザー 1名の無料フルプラットフォームユーザー 30以上の機能へのアクセス データ保持期間 無料で始める Standard オブザーバビリティの開始を検討している小規模チームに。 フルプラットフォームユーザー5名まで チケットサポートが利用可能 SLA - 2営業日以内にサポート対応 SAMLシングルサインオン Standard価格設定を使用 Pro 5名以上の開発者と、複雑なワークロードに対応する必要のあるチームに。 プロビジョニングできるフルプラットフォームユーザーの上限なし コミットメントのオプション SLA - 重大な問題発生時2時間以内に初動サポート対応 Data Plusが利用可能 Pro価格設定を使用 Enterprise 高度なセキュリティとサポートが必要な大規模組織向け。 Proのすべての機能に加え Data PlusでのFedRAMP ModerateおよびHIPAA適格 優先チケットルーティング SLA - 重大な問題発生時1時間以内に初動サポート対応 詳細を問い合わせる 導入事例 世界トップクラスの企業はNew Relicを使用しています。 顧客の体験談 導入事例 デジタル エクスペリエンス モニタリング 受動的アプローチから応答的アプローチへ DevOps ツールの統合 オープンソース 業界 小売とeコマース ヘルスケア メディア・エンターテインメント New Relic for Startups 非営利 公共部門 テクノロジー Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Prometheus監視 SAPモニタリング ServiceNow New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む 1 2 3 イベント 開発者 開発者 簡潔なKubernetes監視 New RelicオペレーターでKubernetes監視を簡素化 モバイルアプリ監視 クイックスタートのインストレーションでハイブリッドなモバイルアプリを数分で監視 New Relic Browserエージェント New Relic Browserエージェントを使用したカスタム計装 1 2 3 人気のドキュメント データ取り込みの開始 カスタムダッシュボードの作成 NRQLクエリの調査 Infrastructureエージェントを使用したログの転送 ドキュメントを表示する 780+インテグレーション 無料プランから始めましょう Python インストール Java インストール PHP インストール Ruby インストール すべてのインテグレーションを見る New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む 1 2 3 リソース 企業情報 リーダーシップ 採用情報 セキュアな開発 New Relic for Students ニュースルーム ESG コミュニティフォーラム 技術サポート 顧客の体験談 ビデオとケーススタディでは、企業がオブザーバビリティで勝ち組になる方法を紹介しています。 リソースライブラリ 電子書籍、データシート、ホワイトペーパー New Relicのブログ 業界の最新情報、ヒント、ベストプラクティス イベント&ウェビナー 今後のイベントやトレーニングにぜひ参加してください。 New Relic University 学習パスとトレーニングコース オブザーバビリティ価値測定ツール New Relicが高めるビジネス価値の詳細はこちらから。 New Relic Now オンデマンドで視聴して、オブザーバビリティを支える最新機能と能力についてご確認ください。 2025 Gartner® Magic Quadrant™ New Relicは、オブザーバビリティのリーダーに13回連続で選出されました。続きを読む Gartner® Magic Quadrant™ New RelicがGartnerによりDEM分野のリーダーに2年連続で選出されました。 1 2 3 Search toggle ログイン ログイン 無料で始める お問い合わせ ログイン ログイン 無料で始める お問い合わせ CORPORATE CORPORATE 会社概要 ニュースルーム 採用情報 セキュリティ ESG/Social Impact パートナープログラム New Relic Trailblazerとは? PRODUCTS PRODUCTS インテグレーション プラットフォーム セキュリティ PRICING PRICING 料金プラン New Relic無料ティア New RelicとDatadogの比較 New RelicとDynatraceの比較 New RelicとSplunkの比較 RESOURCES RESOURCES イベント&amp;セミナー ブログ お客様事例 New Relicを学ぶ (NRU) ProgateでNew Relicを学ぶ コミュニティフォーラム デモをリクエスト お問い合わせ 資料請求 TOPICS TOPICS New RelicとAI insideが語る事業貢献するエンジニアの育成と組織変革 オブザーバビリティとは? 開発者にとってのオブザーバビリティとは? MELTとは? IASTとは? SREとは? 外形監視とは? オブザーバビリティ調査 (全体:2024版) お問い合わせ サービス利用規約 DMCA ポリシー プライバシーポリシー ウェブサイト利用規約 プライバシーに関するお客様の選択 Cookie ポリシー 英国現代奴隷法への対応 Patent Notice 日本語 English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. All rights reserved
2026-01-13T09:30:15
https://www.thoughtworks.com/es-ec
Thoughtworks Ecuador | Una consultora tecnológica global | Thoughtworks Ecuador Enable javascript in your browser for better experience. Need to know to enable it? Go here. Menú Cerrar Ecuador | Español Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English Buscar Cerrar Ask Tai Ecuador | Español Australia English Brazil English | Português Canada English Chile English | Español China English | Chinese Ecuador English | Español Germany English | Deutsch India English Singapore English Spain English | Español Thailand English United Kingdom English United States English Worldwide English Lo que hacemos Visión general Soluciones Experiencia del cliente Innovación de producto Modernización de datos Escalando la IA Transformación de ingeniería de software con enfoque en IA Modernización de plataformas empresariales Gestión y operaciones de aplicaciones digitales Con quién trabajamos Visión general Industrias Automoción Sector público Energía Medios y publicaciones Comercio minorista y comercio electrónico Banca, servicios financieros y seguros Sin ánimo de lucro Viajes y transporte Servicios de salud y ciencias de la vida Servicios públicos Manufactura e ingeniería Insights Visión general Publicaciones Digitales y Herramientas Radar Tecnológico Una guía de opinión sobre el entorno tecnológico actual Opiniones Una publicación para líderes digitales Decoder Una guía tecnológica de la A a la Z para líderes de negocio Looking Glass Poniendo el foco en cambios del negocio liderados por la tecnología Todos los Insights Artículos Opiniones profesionales que ayudarán al crecimiento de tu negocio Blogs Asesoramiento de expertos sobre diseño, ingeniería, IA, carreras en tecnología y más Libros Navega a través de nuestra extensa biblioteca Podcasts en Español Podcasts en Español Ingeniería Carreras Visión general Nuestro proceso de aplicación Descubre lo que te espera durante nuestro proceso de selección Vida de consultoría Descubre cómo es la vida siendo Thoughtworker Graduates and Career Changers Thoughtworks University: Preparing future leaders Ofertas de trabajo Encuentra puestos vacantes en tu región Mantente conectado Suscríbete a nuestro boletín mensual Aprendizaje y desarrollo Descubre cómo apoyamos el crecimiento profesional Beneficios Conoce cómo cuidamos de nuestra gente Acerca Visión general Contacto Buscar Cerrar Ask Tai Perspectives: Edición 36 | May 2025 Ingeniería de software centrada en IA: el desarrollo, evolucionado Explora la última edición Diseño. Ingeniería. IA.  Lo que hacemos Despierta el extraordinario futuro de los pagos en tiempo real Obtén información hoy mismo Anterior Siguiente Pausa Reproducir 1 4 3 Diseño. Ingeniería. IA.   Somos una consultora tecnológica global que genera un impacto extraordinario al combinar experiencia en diseño, ingeniería e IA.   Durante más de 30 años, nuestra cultura de innovación y excelencia tecnológica ha ayudado a nuestra base de clientes a fortalecer sus sistemas empresariales, escalar con agilidad y crear experiencias digitales integradas.   Nos dedicamos a resolver los desafíos más críticos de nuestra base de clientes, combinando la inteligencia artificial con la creatividad humana para convertir sus ideas más ambiciosas en realidad. ¿Cómo podemos ayudarte? Nota: Este contenido puede no estar disponible en tu idioma de preferencia. Últimas perspectivas Tool Desbloquea el valor de tus datos a gran velocidad y escala Lee este informe E-Book Más allá de la vieja y nueva tecnología Descubre más Top 15 Thoughtworks se convierte en el principal socio de Google Cloud en el Modelo de Compromiso de Servicios Webinar Radar Tecnológico volumen 33 Explora la última edición Impacto extraordinario para nuestros clientes Historias destacadas de clientes Infrastructure idealworks: Pioneering smart logistics through infrastructure optimization and engineering effectiveness Descubre más Platforms Spotify: Colaboración de confianza durante cinco años fortalece el Mercado de Creadores de Spotify. Descubre más AI and ML BMW Group: Bringing connected AI to life at a leading automobile manufacturer Descubre más AI and ML minden.ai: Building yuu Rewards Club Singapore, a revolutionary customer loyalty platform Descubre más User experience NHS England: An innovative approach to re-registration saves millions while improving care outcomes Descubre más Cloud Etsy: Manteniendo la conexión humana en el corazón del negocio Descubre más Ver más Ver menos Nuestros socios de confianza ¿Listo/a para asumir un nuevo puesto? Los trabajos en tecnología pueden ser ordinarios. Hora de entrada, hora de salida: enjabonar, aclarar, repetir. ¿Quién quiere eso? Definitivamente no nosotros y definitivamente no tú. Thoughtworkers rompen el molde. Únete a nuestro equipo certificado como Los Mejores Lugares para Trabajar™️. Juntos tenemos un impacto extraordinario. Explora carreras profesionales con nosotros Transforma tu viaje digital Contáctanos Empresa Sobre nosotros Qué hacemos Asociaciones Con quién trabajamos Noticias Diversidad, equidad e inclusión Carreras Contáctate con nosotros Insights Centro de preferencias Artículos Blogs Libros Podcasts Información del sitio web Política de privacidad Accessibility statement Declaración sobre la esclavitud moderna Código de conducta Línea sobre Asuntos de Integridad Conecta con nosotros © 2026 Thoughtworks, Inc. × WeChat
2026-01-13T09:30:15
https://mspoweruser.com/tenorshare-ianygo-review/
Tenorshare iAnyGo Review: How Reliable Is It? Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 4 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 4 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 4 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 4 weeks ago Get Weekly Updates Tenorshare iAnyGo Review: How Reliable Is It? Home » Apps Tamal Das Tech Analyst Apps 14 min. read Updated on November 6, 2025 Read this Tenorshare iAnyGo review to learn if the tool is worth your time and money when considering the best iOS/Android device GPS spoofing software. Tenorshare iAnyGo is a GPS manipulation tool. You need to install it on a PC or Mac and connect your smartphone using a USB cable. Then, you can spoof your device&#8217;s active or passive geolocation system through the app. I rigorously tested the tool in various scenarios like personal privacy, location-based gaming, getting better online shopping deals, and more. I&#8217;ve also performed an in-depth analysis of its features, functionalities, and their performance. Pros Cons Functional free trial The free version comes with limitations. Easy-to-use user interface You need to enable your device&#8217;s Developer Mode. Supports both Android and iOS devices. If you enable Developer Mode on an iPhone, iPad, or iPod Touch, there&#8217;s no way to undo this without factory resetting the device. Available for Windows and Mac. You must restart the mobile device to stop spoofing your GPS location. Supports a wide range of location-based game apps, like Pokemon Go, Monster Hunter Now, etc. The GPS spoofing interface is only available in 1020 by 640 pixels. A lot of customizations are available to fine-tune GPS spoofing to make it harder to detect. Intermittent issues with iOS devices for the Trust this Device prompt. There&#8217;s an automatic cooldown timer to avoid getting banned from location-based games. Lightweight PC/Mac apps. You don&#8217;t need to jailbreak the iOS device to modify GPS locations. Get Tenorshare iAnyGo Tenorshare iAnyGo Features Now let me show you iAnyGo&#8217;s best features and how well they work: Change Location The Change Location feature lets you quickly change the live GPS location of your device from one geo coordinate to another without moving physically. Within the app, you simply hit the Destination Location card and choose a point on the map. As soon as you hit the Start to Modify button, your iOS or Android device will show the same on their Apple Maps or Google Maps apps. The functionality works just fine and updates your live location on the map in real-time. However, to go back to the original location, you need to use the Restore true coordinate function and reboot your mobile device. Single-Spot Movement As the name suggests, the Single-Spot Movement feature enables you to create a straight-line movement between two spots on any map. You can use the Start Point card on the tool to choose a location on the map as the starting point. Then, you can use the End Point card to set the destination on the map. Now, you can simply hit Start to Move to play the GPS movement on your Android or iOS devices. Be mindful that you&#8217;re not moving an inch yet people monitoring your mobile&#8217;s GPS will see you going from point A to point B. In this feature, you can also adjust the speed at which you&#8217;re moving within a range of 3.6 km/h to 108 km/h . iAnyGo also allows you to set the movement to Rountrip or Looping . Moreover, you can select how many times you want to loop through the route. One of my friends wanted me to visit a cafe they liked. Since I couldn&#8217;t do it immediately, I used this feature to mock a single-spot movement between the cafe and my home. I shared the live location of my device with my friend and he couldn&#8217;t tell that I was not really there. So, I&#8217;d say that the feature does what it promises. Multi-Spot Movement The Multi-Spot Movement feature lets you create a complex route of multiple stops and round trips . Also, you can create custom GPS movement speeds between two spots within the route. Once you&#8217;re done creating the route, you just hit the Start to Move button to begin mocking the GPS location movements within your iPhone and Android. Anyone monitoring your device will also see this movement. Moreover, if someone attempts to download the history of your GPS movements from the mobile device by downloading a GPX file, the custom route will be there too. Suppose you&#8217;ve uploaded a GPX file to set up a multi-location movement route. However, you&#8217;d like to edit a few spots on the route . You can do just that on iAnyGo. There&#8217;s a two-sided expansion arrow on the Route card inside the Multi-Spot Movement box. By using this icon, you can expand and collapse the GPS coordinates of the route. From the list, you can delete some stops if you want to. I used this feature to automatically move on to the Pokemon Go app to collect great Pokemons without moving or walking on an iPhone . I simply started the game and ran a previously created custom multi-spot movement GPS route on the iAnyGo app. The software accurately reflected the same on the game app too. Joystick Movement In the Joystick Movement mode, you can use a virtual joystick to mock your device&#8217;s GPS signals at granular levels. You can use the following options to move the joystick: With a mouse click: You can click on the middle button of the joystick and drag it in any direction to create virtual movements of your in-game character. You don&#8217;t physically move around the location though. Drag and drop the middle button in a direction: Click on the middle button and drop it on any position of the W-A-S-D circle. This will start an automatic movement of the GPS arrow in the same direction at a walking speed. Using the keyboard: Simply press the W , S , A , and D keys to move around the virtual game map along with GPS mocking on the iAnyGo app. To start or stop moving, you can hit the Space bar key. I used this functionality along with a custom route map to collect exciting Pokemon on the Pokemon Go app. I could move around the virtual Pokemon world using the W , S , A , and D keys on my PC while looking at the actual scenes of the game on my iPhone. This is a novel feature of iAnyGo. Many of its competitors like UltFone iOS Location Changer don&#8217;t have the functionality. Import/Export GPX File Instead of manually creating a custom route with multiple stops in the iAnyGo app, you can use the Import/Export GPX File feature. For example, you can use a GPX file editor to create a personalized map for Pokemon Go or MHN. Then, import the GPX file to the tool and start manipulating your device&#8217;s GPS coordinates. Also, if you&#8217;ve created a custom route on the iAnyGo app already, you can use the Export GPX file feature to share it with someone else or keep it saved as a record. The feature is only accessible in Single-Spot Movement and Multi-Spot Movement modes . Value Added Tools Besides the above-mentioned primary services, I&#8217;ve found the following tools add convenience and value to your iAnyGo subscription: 1. Historical Records: The tool automatically creates a record of all map coordinates you visited in its lifetime. So, if you need to go back to a previous location where you could capture the best Pokemons, you can do that by finding the point using this functionality. This is a premium access feature. Also, it&#8217;s linked to the Multi-Spot Movement mode. When you open the Multi-Spot Movement screen on iAnyGo, look for a tiny folder icon with a zigzag line in the top right corner and just below the GPS Coordinates search field. 2. Adjustable Moving Speed: Do you need to move at a certain speed for work tracking purposes? Are you looking to simulate movements on maps to estimate travel durations? Then, this feature will come in handy. You can create a route plan and then change the movement slider on the map interface. You can customize the moving speed between 3.6 Km/h to 108 km/h . You also have the following modes of transport to choose from: Walking Riding a bicycle Riding a scooter/motorbike Driving a car 3. Cooldown Timer: Location-based gaming apps and certain business apps prevent you from accessing servers if you change positions too often. For example, if you use a GPS modification tool for Pokemon Go , you might get banned. The game detects it by reviewing your quick movements on a large map area, which isn&#8217;t physically possible. iAnyGo comes with a cooldown timer to prevent bans . If you don&#8217;t switch the location before the countdown ends, you&#8217;re good to go. 4. Zoom In or Out of the Map Interface: You can simply zoom in and out of the map using the mouse scroll wheel. This feature lets you fine-tune your path selection and other route customizations. There&#8217;s also a pair of zoom-in-out buttons in the bottom right corner of the app interface. 5. Bookmark Routes: This feature enabled me to save various favorite locations on the map over a period of time. Then, I could quickly import those in a custom route for Multi-Spot Movement or Single-Spot Movement spoofing. MHN Wizard Monster Hunter Now updated its game algorithm to defeat GPS spoofing in February 2024. Hence, most prevailing GPS location modification apps were rendered ineffective. However, iAnyGo offers an additional tool, named MHN Wizard, which you can download to install the MHN game through Tenorshare . Then, you can easily use the iAnyGo app to spoof your location within the MHN game app. This MHN GPS spoofing restriction bypass is highly convenient compared to the complex processes followed by iMyFone AnyTo and UltFone iOS Location Changer. Device and App Compatibility iAnyGo supports the following devices: Windows PC or Mac to operate the software iPhone, iPad, and iPod Touch Over 6,000 Android models The GPS spoofing functionally works on many iOS and Android apps. Here are some of the major ones: Mobile Legends Jurassic World Alive Pikmin Bloom Geocaching Twitter Snapchat Telegram Google Find My Device and Find My iPhone Google Map However, the app compatibility is more extensive for iOS devices than Androids. After testing extensively, I&#8217;ve figured out that it&#8217;s compatible with any iOS app that uses the built-in active and passive GPS system of your device. Tenorshare iAnyGo User Interface The best thing about iAnyGo is its clutter-free and minimalistic user interface . You&#8217;ll find all the primary features in a left-side navigation panel. The app services are organized in the order of complexity and multifacetedness. For instance, refer to the following list: Change Location: Spoofs the built-in GPS. Single-Spot Movement: It&#8217;s mostly useful for location-based apps and games. Multi-Spot Movement: Makes your device show movement along a custom route. Joystick Movement: Lets you control GPS locations using a virtual joystick. The tool uses simple and self-explanatory icons to represent different functionalities. Besides the function icons, you&#8217;ll also see a graphical illustration of the outcome of the feature you&#8217;ve selected. For example, the Multi-Spot Movement shows an illustration of multiple map pins along a route on the map app. Furthermore, there are enough text-based instructions on the main screen of a specific feature. Besides an explanation of the feature, you&#8217;ll also find examples of use cases. When using software to manipulate the built-in GPS signal of an iPhone or iPad, you must interact with your device&#8217;s Developer Mode . While that&#8217;s usually highly technical, it becomes really simple to enable or disable this special device feature by following the detailed graphics and text instructions shown by the app. Since the app is compatible with both Android and iOS devices, you need to click on the correct device to see specific instructions for the Developer Mode. Once you&#8217;re inside the iAnyGo GPS manipulating interface, you can quickly switch between the four functionalities mentioned earlier. Though the UI and UX are overall great, there are some drawbacks too: The app forces you to disconnect and reconnect the USB cable between the PC and mobile device to refresh the USB debugging connection. However, you don&#8217;t really need to do it. Just, click OK on the error message that pops up and then try to use a service again. When spoofing GPS on an iPhone or iPad, you might frequently face the Trust This Computer issue. The tool insists upon tapping Trust when a prompt appears on the mobile device. However, it won&#8217;t appear if you&#8217;ve previously connected the iPhone to the same PC or Mac. The software fails to show a functional guide to get back the Trust This Computer dialog. To get the Trust This Computer prompt, you must uninstall iTunes from your Windows PC. On a Mac, you must remove the Apple ID that&#8217;s logged in to the iPhone from the Mac. These are time-consuming processes that you might want to avoid. Both the computer and mobile device must stay connected to the same internet network. So, you can&#8217;t use the tool for remote devices. Customer Support Tenorshare offers comprehensive and attentive customer support through the following channels: Support Ticket Form If you haven&#8217;t installed the app on your PC or Mac yet, you can use the Contact Support Team form to submit your questions or information requests to the Tenorshare support team. According to the company, the support staff should get back to you via email within 24 hours on weekdays. To test if their claim is accurate or not, I sent a presales query as shown in the following screenshot: As soon as you submit the form, the Tenorshare support server will send an acknowledgment email to confirm they received your inquiry. In my test case, I sent an email on the weekend, which was Saturday. I got a reply on Sunday. It took around 22 hours for the team to respond . In-App Feedback Suppose, you&#8217;ve already installed the software. Then, you can find the Feedback form inside the horizontal three-line menu in the top right corner of the app. The form is really simple. You just need to enter the following data to initiate a support inquiry: Your email The exact issue An image as an attachment, if available The time it takes for the support team to respond via this method is the same as the contact form given on the website. However, using the Feedback form won&#8217;t create a ticket ID . Tenorshare iAnyGo Pricing You might find the pricing descriptions on the Tenorshare website a bit confusing. Here&#8217;s a simplified overview of the subscription slabs you can choose from: Paid Licenses for 1 PC: Features 1 Month 1 Quarter 1 Year Lifetime Cost $9.95 $19.95 $39.95 $89.95 No. of mobiles supported 5 5 5 5 Upgrades One month Three months One year Lifetime Paid Licenses for 2 PCs: Features 1 Month 1 Quarter 1 Year Cost $15.95 $29.95 $59.95 No. of mobiles supported 5 5 5 Upgrades One month Three months One year Bundled Licenses: Features 1 Month 1 Quarter 1 Year Lifetime Cost $19.95 $39.95 $79.95 $119.95 No. of mobiles supported 5 5 5 5 Upgrades One month Three months One year Lifetime The bundled license also includes the activation keys for both Windows PC and Mac. If you buy any of the timed subscriptions like 1 Month, 1 Quarter, etc., you&#8217;ll be charged automatically for the next billing cycle . So, you must cancel the plan manually or submit a support ticket if you&#8217;re not planning to continue the package for the next month or cycle. Refund Policy There&#8217;s a 30-day money-back guarantee for all products Tenorshare products, including iAnyGo. Keep in mind, however, that you might not get a refund in the following circumstances: You&#8217;ve changed your mind and just want your money back. You didn&#8217;t get the license code within 2 hours of the purchase. You&#8217;re claiming it&#8217;s an unauthorized payment. The app is working fine but you&#8217;re not satisfied with its results. So, to avoid the hassle of asking for a refund, install the free-trial edition, try it out for a bit, and then buy only if you&#8217;re satisfied. Get Tenorshare iAnyGo Tenorshare iAnyGo Review &#8211; Verdict Tenorshare iAnyGo is a great app that delivers on its promises. It&#8217;s easy to use and gives you various ways to spoof your GPS location for different purposes. However, the huge roadblock is you must activate Developer Mode on your mobile devices for it to work. Though you can easily undo this on Android, an iOS device needs a factory reset . Developer Mode allows you or someone else with access to the device to run advanced codes and even malware. So, if you&#8217;re highly security-conscious, this isn&#8217;t a great choice for GPS location spoofing. Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://mspoweruser.com/munch-ai-review/
Munch AI Review: Is It Worth The Price Tag? Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates Munch AI Review: Is It Worth The Price Tag? Home » Apps Tamal Das Tech Analyst AI 16 min. read Updated on November 4, 2025 Looking for the best AI video editing software to churn out short clips from long videos? This Munch AI review will help you decide that&#8217;s the right app for the job. I used the tool extensively in various projects to put its features and functionalities to the test. I&#8217;ll share my experiences below and also give you step-by-step guides on how to use Munch for the best results. Let&#8217;s get started. What Is Munch AI? Munch AI helps you to create engaging short videos from long-form ones . It also collects information from the web to ensure that the generated clips perform well. The tool ensures that the speaker or primary character is always in focus. To do so, it uses artificial intelligence and machine learning to fix the emphasis point of the video. Additionally, a precision OCR model automatically analyzes your videos to create supporting content like social media post captions, video captions, video details , and more. Finally, it automatically posts the content on the social media platform of your choice. You can do all that in a few clicks without knowing the technicalities of video editing . Pros Cons Cost-effective if you create short video content in bulk Expensive if you only use it occasionally Comprehensive feature set Manual editing requires some trial and error Automates the content-sharing process on supported platforms The free version doesn&#8217;t let you use your own videos Beginner-friendly interface Might not accurately repurpose highly technical and niche-specific content Analyzes social media trends to give you actionable insights Struggles with heavy accents when generating subtitles Uses AI to minimize the chance of copyright issues when posting content across different platforms Length/size limits for processing and uploading videos Get It First policy to push new features to premium users Only supports up to 1080p resolution for short videos Works on mobile web browsers Helps you stay consistent in video formatting/style via brand kits Try Munch AI for free on Windows , Mac , and Linux with all popular web browsers. Munch AI Features Now that you have a basic idea of the tool&#8217;s capabilities, let&#8217;s explore its most notable features in detail: Video Repurposing This is Munch AI&#8217;s main feature. It transforms your long-form videos into short clips you can use across social media platforms like YouTube , Instagram, Facebook, TikTok , and LinkedIn . The AI analyzes the video you upload for topics, themes, and context. It then takes the most important parts and transforms them into bite-sized reels, stories, shorts, posts, etc. It also lets you pick from various styles of subtitles to make your content pop. The tool uses speech-to-text technology, so there&#8217;s no need for manual transcribing. After you&#8217;re happy with the result, Munch lets you share your new content across your social media profiles. Munch UI and UX Munch offers a simple and clutter-free user interface suitable for both casual and expert social media users. You can find all the main functionalities in the left-side navigation panel. For example, if you wish to review existing Munch content or create a new project, you can go to the My Projects menu. The thumbnails and buttons of this AI video editing tool are large enough. So, you won&#8217;t face any accessibility issues with the tool interface. Publish Manager To look at the schedule or ready-to-publish videos, go to the Publish Manager board. This is a neatly organized content calendar for social media publishing purposes. The first time you access the app, you need to visit the Integrations menu to link video-sharing platforms with your Munch account. Once done, you can trigger automated workflows to post content automatically without manual intervention. The AI video editing interface is buried deep inside the projects as you&#8217;ll rarely need to use this section for manual enhancement. Munch is generally powerful enough to create publish-ready content 99% of the time. However, for some of the more advanced functionalities, you&#8217;ll probably need to check out the instructional articles and FAQs in the Munch Help Center . I&#8217;d say there&#8217;s an intermediate-level learning curve for the following features: Subtitles (real enhancements) Magic Posts (optimized for social platforms) Auto Title (Title Text and Styles) Cropping (Auto-Crop and Manual-Crop) In-editor brand kits Content Aspect Ratio You can find some customizations in the top-right gear icon (profile picture). From here, you&#8217;ll mostly need to change the tool&#8217;s language while running a multi-language project. You can also tweak other features in the Settings menu but the default configurations are usually the best. My experience using the tool to repurpose long-form videos into Instagram Reels and YouTube Shorts has been great. After checking out the whole interface once, I didn&#8217;t find it challenging to remember how to navigate sections like My Projects , Publish Manager , Brand Kit , and Integrations . However, I felt that the AI video editing interface was a bit complicated . If you&#8217;re consistently getting Good to Very Good Coherence Scores for your videos, you don&#8217;t need to worry about this too much. But if you get lower scores, you&#8217;ll need to dig deeper into the editing tool, which I think could&#8217;ve been made simpler. Another downside of Munch&#8217;s user experience is you can&#8217;t retrieve deleted projects . So, don&#8217;t delete one unless you&#8217;re absolutely sure you won&#8217;t need it. Publish Manager You can handle hundreds of short videos for social media posting purposes using the Publish Manager . Suppose, there are 10 projects in your My Projects dashboard. You&#8217;ve manually gone through all the videos and marked the best reels with a star tag. Now, you can come to the Publish Manager board and click the Add all starred clips button to add the content to the board. Now, you can select all the videos at once and post them on multiple platforms in a few clicks. The options for social media platforms will get merged when you choose more than one clip. If you attempt to post all the content in the shown options, it&#8217;ll only publish the videos on the platforms for which they have been produced. You can also use the tools as a free social media scheduler and set email reminders when a video is due for publication. Brand Kit Tool The Brand Kit Tool includes logos , CTAs , color palettes , visual overlays , and more. It lets you maintain consistency across your short clips. Using this feature, you can manage multiple branding profiles in your account. When creating short videos, simply choose a branding profile to apply the necessary creative assets. Alternatively, you can set one Brand Kit as the default profile for all your future AI video editing projects. Subtitles and Closed Captions Munch AI comes with speech-to-text technology that can extract texts from videos and create subtitles or CC for your short-form videos. You can customize the display of subtitles using options like Styles and Auto Highlights . There&#8217;s a collection of 7 highly popular CC or subtitle styles in the Subtitles Templates section. During my tests, I found that the output is accurate provided that you&#8217;re uploading a video with accurate pronunciation. However, the AI will struggle with heavy accents and slurred speech . Coherence Score You can use the content Coherence Score to measure the performance of your short videos . When the Coherence Score is high, it means the viewers can easily understand the conveyed message without seeing the original long-form video. Munch uses different categories to show you how comprehensible the generated video is: Fair: This score indicates that the video might lose some context and flow compared to the original. It&#8217;s sufficient for specific uses, like showcasing technical instructions. However, avoid such scores for non-technical content. Medium: It suggests that the edited clip maintains the coherence of the source. However, you can use the Re-Munch feature (more on that below) to make improvements. Good: This score signals that the clip retains a high level of coherence and clarity. Very Good: It shows that the shortened video has preserved nearly all of the original&#8217;s message. The video should engage your audience effectively. Excellent: This indicates that the edited video is almost indistinguishable from the original in terms of coherence. Re-Munch Sometimes, you may not be happy with the clips Munch has generated. Maybe the perspective is wrong or the AI hasn&#8217;t understood the context properly. In such cases, you can use the Re-Munch feature to give the app a second chance. It analyzes the source video again and uses a different perspective, topic, style, etc. On the downside, you can only use Re-Munch once for each project . So, if the AI misses the mark again, you&#8217;ll have to start from scratch. However, my experience with the feature was good and it even improved the Coherence Score of my test video from Good to Very Good. Manual Crop You can further enhance the focus on the character or object on a clip using the Manual Crop feature. The tool is fairly easy to use. You simply need to put the focus frame on the face of the person or the shape of the object. Then, use the Split tool to save the manual cropping you&#8217;ve made. There&#8217;s a video timeline that allows you to choose a portion of the video you want to edit. If the output isn&#8217;t satisfactory, you can quickly reset the timeline and start over. The Manual Crop tool works by focusing the viewing frame on a subject you choose throughout the entire clip. Then, it gathers all the splitter frames in one single video that features only this subject. Language-Specific Short Videos This AI reel generator tool lets you produce trending short videos in different languages. At the time of writing this Munch AI review, the tool supports up to 17 languages . Some of these include English , Dutch , French , German , Italian , Chinese , Japanese , Russian , and more. Social Media Trend Analysis Munch AI also functions as a social media trend analysis tool. In a project, the AI automatically shows the trending topics, hashtags, keyphrases, etc ., to help you go viral in your niche. The tool gives you the following trend and SEO analysis data: Keywords Search Volume: You can find trending keyphrases from the past month, 3 months, and 6 months. The report also includes metrics like Search Volume , Competition , etc. If your Munched videos match any of these keywords, you&#8217;ll find links to those videos too. Top Trending Keywords: You get two tables of top keyphrases. One is for the top 10 and another is for the top 5 keywords. The latter also shows a visual chart so you can understand how these keywords are performing. Again, you can view all your clips that match these trending topics. Top Down Trending Keywords: This is a table of keyphrases that are seeing a reduction in trend score compared to the previous 7 days&#8217; score. You can use this feature to find out if any of your short clips contain these keywords. If so, exclude the down-trending keyphrases and re-publish the videos. Finally, you get Top Trending Brands and Top Trending People data to research your competitors. And if you&#8217;re going through a creative block, there&#8217;s also a Top Trending Topics section to get new content ideas. Third-Party App Integrations At the time of writing, Munch offers integrations with YouTube , TikTok , and Instagram , with support for YouTube Shorts and Facebook coming soon. These integrations enable you to automate the entire creation and publishing process . If a platform you&#8217;re using is not available, you&#8217;ll need to download your video from Munch and upload it manually. Supported integrations allow the app to automatically match the content policies of these platforms in terms of: Video length Video description SEO-optimized copies CTAs Team Collaboration Munch allows you to create Groups to include team members in the video creation and editing process . However, all collaborators must have an account on the app. The drawback is you can&#8217;t create a Group on your own . You have to send the emails you want to invite to the Munch support team and they&#8217;ll create the workspace for you. Collaborators can access your clips using shared links, edit content if needed, and download the output. However, these projects won&#8217;t show up in the My Projects section. Data Security and Privacy Munch AI automatically collects various data when you use it. However, as per its privacy and security disclosures, the company doesn&#8217;t share your personal information with third parties who might include you in targeted advertisements. The web app itself comes with SSL security . It means data transmitted between your device and Munch&#8217;s servers is encrypted in transit and at rest. However, this doesn&#8217;t guarantee that your data won&#8217;t be intercepted during transmission. So, you should take appropriate safety measures, like using a VPN , especially if your clips contain personal info. Customer Support Munch offers efficient customer support via email and chat . The latter connects you to a chatbot that&#8217;s capable of guiding you through simple issues and mainly gives information that&#8217;s already available in the Help Center . With that in mind, I&#8217;d recommend going straight to email if your problem is more complex. During my tests, I got a response within 16 minutes. Additionally, munch offers a wide range of guides, FAQs, and articles related to the tool&#8217;s functionalities . How to Use Munch AI To get started, sign up for a free profile using the Get Started Now button. You&#8217;ll see a Google Account sign-in option. Alternatively, you can create a new account using your email address. Once you&#8217;ve accessed the dashboard, follow the guides below: Creating Short Videos From a Long One Here&#8217;s how you can repurpose a full-length YouTube or instructional video into engaging YouTube Shorts, Instagram Reels, and more: Go to the My Projects menu and click the big plus icon to start a new project. Select any of the options from TikTok , Instagram , YouTube Shorts , Facebook , and LinkedIn on the Select Project screen. On the Upload Source screen, you&#8217;ve got two options. You can insert a link to a publicly available YouTube video. This link can also be a Google Drive one. Alternatively, hit the Click to upload button to add a video from your device. If you go for the latter, the video shouldn&#8217;t be more than 4 hours in length or 4 GB in volume. However, if you attach a link from Google Drive, you can bypass these limits. You should now arrive on the Stylize screen. Choose a subtitles style from the menu. Checkmark the Save selection checkbox if you want to use the same subtitles template for your future projects. On the Fine Tune screen, you need to choose the following elements: Project name Description of the source video Optimal clip length Hashtags AI captions for social media posts Video analytics like trending content keywords, etc. Automatic subtitles Finally, hit the Munch It! button to begin repurposing your long-form video into short clips. It might take a while depending on the source video length. For me, it was 43 minutes for a 45-minute-long YouTube video. Munch AI will send you an email once the processing is complete. Go to My Projects and click on the project thumbnail. You&#8217;ll now see all the reels created by the video editing AI. Click on any thumbnail to review the video, post descriptions, subtitles, etc. If you&#8217;re ready to publish the video, click the Export button and choose a platform. If you want to post on LinkedIn and Twitter, which aren&#8217;t supported as integrations. Click Download to save the content on your local drive and upload it manually. Manually Cropping Short Videos When short clips don&#8217;t show the target object or person, follow these steps: Go to a project and click on the Edit button. Munch AI will take you to the AI video editing interface with Subtitles as the selected menu. Click on the Cropping icon in the left-side navigation panel. Now, enable Manual-Crop . On the video frame above the timeline ribbon, adjust the grid lines to focus on the target object or person. If needed, you can reduce the size of the gride line too. However, you can&#8217;t go above 608 pixels . Click the Split button to save the changes. Now, repeat the steps for the entire length of the video to adjust the focus on the primary character or object. Once done manually cropping the video, click the Apply Changes button. This will rewrite the previous short video clip to include the new edits. When using the Manual Crop, set the content performance metric, like the Coherence Score . It&#8217;ll enable you to avoid multiple manual editing of the same videos. Pricing Munch AI offers the following pricing plans: 1. Ultimate ($220/ month): With this plan, the combined length of the video assets you can upload and process is up to 1,000 minutes . Additionally, you get the following benefits No watermarks Automatically create 9:16 aspect-ratio videos Social media-specific copy for video details AI-powered subtitles, captions, and posts for social media Automatically export videos to YouTube, TikTok, etc. Saves brand assets in a central folder, named Brand Kits Unlimited downloads Social media trend-specific short videos Match reels with high-volume keywords Get It First for app updates 2. Elite ($116/ month): It offers all the benefits you can enjoy in the Ultimate plan. However, you can process up to 500 minutes of videos. 3. Pro ($49/ month): You can upload and produce up to 200 minutes of short-form videos in this. You&#8217;ll have access to all Ultimate-plan benefits except the Get It First feature. 4. Free Trial: Try the tool for free &#8211; no credit card required. However, this option doesn&#8217;t allow you to convert any of your own videos to short clips. There are pre-configured projects that you can try out. If you subscribe to any of the paid plans for the whole year, you&#8217;ll get up to a 16% discount . All subscriptions renew automatically , so you&#8217;ll have to cancel the plan in a running month to avoid a charge for the next billing cycle. Munch doesn&#8217;t offer any refunds . So, make sure you thoroughly test the free tier should try out the free tier before committing. Munch AI Review &#8211; Verdict If you want to create short clips out of feature-length videos, Munch AI is a solid option. Overall, the tool does its job well. It can accurately analyze long videos, properly determine the main message and context, and gather the most useful information to include in your short clips. However, I&#8217;d only recommend it if you need to produce lots of content. Otherwise, the price tag may not be worth it. Did you check out Munch AI after reading this review? Share your own experience in the comments below! Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://newrelic.com/fr/termsandconditions/hipaabaafaq
HIPAA BAA FAQ Passer au contenu principal Pour le moment, cette page n'est disponible qu'en anglais. HIPAA &amp; BAA FAQ New Relic Telemetry Data Platform, Full-stack Observability, and Applied Intelligence solutions Thank you for considering becoming a customer of New Relic. New Relic’s offerings are different from other SaaS offerings you may have encountered before. To avoid any misunderstandings about how New Relic fits into your technology estate, this FAQ is intended to paint a clearer picture of what we do, how we do it, why we do it, and where PHI may end up with New Relic. What does New Relic do? New Relic provides software developers and teams that run the software the tools needed to identify issues with that software. New Relic does not provide IT solutions for health care treatment or payment, nor many of the operations. Our technology performance-monitoring solutions are intended for use cases with non-sensitive timing and metric data, which you control by your deployment and configuration choices. We provide SRE and DevOps teams that develop, maintain, or update your software and technology solutions control over the data elements sent to New Relic. Health IT Examples Does New Relic do this or provide this? Primary Care Clinical decision support ❌ Computerized disease registries ❌ Computerized provider order entry ❌ Consumer health IT applications ❌ Electronic medical record systems ❌ Electronic prescribing ❌ Telehealth ❌ Revenue Cycle Charge capture ❌ Coding ❌ Claims submission ❌ Insurer communications ❌ Payment collections ❌ Medical service review ❌ Payment Billing ❌ Risk adjustment ❌ Reviewing for medical necessity, coverage, justification of charges and the like ❌ Utilization review activities ❌ Disclosure to consumer reporting agencies ❌ Health care operations Conducting quality assessment and improvement activities, population-based activities relating to improving health or reducing health care costs, and case management and care coordination; ❌ Reviewing the competence or qualifications of health care professionals, evaluating provider and health plan performance, training health care and non-health care professionals, accreditation, certification, licensing, or credentialing activities; ❌ Underwriting and other activities relating to the creation, renewal, or replacement of a contract of health insurance or health benefits, and ceding, securing, or placing a contract for reinsurance of risk relating to health care claims ❌ Conducting or arranging for medical review, legal, and auditing services, including fraud and abuse detection and compliance programs;&nbsp; ❌ Business planning and development, such as conducting cost-management and planning analyses related to managing and operating the entity; and&nbsp; ❌ Business management and general administrative activities related to implementing and complying with the Privacy Rule and other Administrative Simplification Rules, resolution of internal grievances, sale or transfer of assets, creating de-identified health information or a limited data set, and fundraising for the benefit of the covered entity. ❌ &nbsp; Does New Relic directly interact with patients on a covered entity’s behalf? No. New Relic’s users are generally developers, IT operations, and site reliability engineers. In general, New Relic’s subscriptions prohibit sublicensing access and use of New Relic’s SaaS to your own customers. How does New Relic provide its solutions? New Relic provides a database, which we call the Telemetry Data Platform , that stores telemetry data about software performance. New Relic provides a graphical user interface via our website that allows users to quickly understand the health of frontend software and backend software, which we call the Full-Stack Observability . New Relic provides AI-powered solutions, which we call Applied Intelligence , that run on the telemetry data and can help automate identifying the root cause of a problem with software. Why does New Relic provide its solutions? Software code is bigger and more distributed than ever before. New Relic’s solutions can help your teams answer software problems and questions like: Where in my distributed technology estate is the slowdown occurring ? What is the root cause of my slow website ? What patient treatment or payment services do New Relic provide covered entities? None. New Relic’s solutions help software developers identify issues with software. Can I see what’s in the data sent from my systems to New Relic? New Relic’s data dictionary defines many of the common data attributes processed by New Relic.&nbsp; New Relic users can view data using New Relic’s data explorer to view the telemetry data elements (including in JSON format) in the New Relic account. Your teams, solely within their election, may configure your licensed software to send custom telemetry data. That is wholly within your teams’ control and purview. You can view these customized data in data explorer as well if you would like to view the data elements for such custom telemetry data. Logs data is generally unstructured, raw “reports” generated by your software. Like other telemetry data available to users, if you have a New Relic account, you can view these Logs in New Relic’s data explorer and the Logs UI in New Relic One. What kind of health information technology does New Relic provide to covered entities? None. New Relic: Does not provide an electronic medical record or a personal health record;&nbsp; Is not an electronic data interchange; and Is not a health information exchange or health information organization Depending on the technologies that your teams may use, New Relic can help your teams that build, operate, and maintain your health information technology identify issues with such software. Why does New Relic sign a BAA then? Where will PHI likely end up? If you use New Relic Browser in your patient-facing website, IP addresses are used to derive regional location information, and then the IP address is subsequently overwritten. Please see additional information provided here . If you use New Relic Mobile in your patient-facing mobile application, IP addresses are used to derive regional location information and subsequently discarded. Please see additional information provided here . If:&nbsp; Your applications or your infrastructure (servers, hypervisor, etc) process PHI Your applications or your infrastructure generate Logs that may include personal information relating to a patient You configure your applications or your infrastructure to send those Logs to New Relic Then PHI may end up in the Logs that New Relic receives from your software and on your behalf. “The HIPAA Rules generally require that covered entities and business associates enter into contracts with their business associates to ensure that the business associates will appropriately safeguard protected health information” (published by HHS). If you are a covered entity and will have PHI in the data that you send to us, you need a business associate agreement with New Relic. Do all covered entities have to sign a business associate agreement with New Relic? According to HHS : A “business associate” is a person or entity that performs certain functions or activities that involve the use or disclosure of protected health information on behalf of, or provides services to, a covered entity.&nbsp; Not all covered entities sign a business associate agreement with New Relic because some covered entities do not send protected health information to New Relic. Covered entities can (i) limit the scope of systems performance monitoring and (ii) control the telemetry data sent from their software and IT systems so that it excludes any PHI. How can I help reduce or limit any PHI in the telemetry data that I send to New Relic? Some options for your consideration: Carefully choose which applications and infrastructures you want to instrument and measure performance. Some or many of your systems may never process any PHI and therefore monitoring those systems will unlikely contain any PHI. Reduce or limit the use of any custom events so they do not contain any PHI elements. Talk to your legal, privacy, or compliance officers if you need assistance determining whether your data attributes or your proposed JSON schema will contain any PHI elements. Reduce or limit the use of dimensional metrics that may include any personal identifiers about patients. Review Service Maps in New Relic One to determine whether there are upstream connections to any patient-facing services or connections to systems that may contain PHI. Use New Relic’s data explorer to review every type of data at a regular cadence to see if there are any PHI elements. Add your legal, privacy, or compliance officers as a New Relic user so they can use New Relic’s data explorer to review for themselves. There’s a separate subsection in New Relic’s data explorer for “Custom Events” If you are implementing rules on your systems to remove identifiers in any telemetry data before sending it to New Relic, then consult with your legal, privacy, or compliance officers by sharing the JSON or raw file types (under New Relic’s data explorer ) to confirm the telemetry data has been appropriately de-identified in accordance with HIPAA . Invite your legal, privacy, or compliance officer to review any one of your data in New Relic’s data explorer Use New Relic Log drop filter rules to drop Logs data that meet your specified criteria. If you find PHI that you prefer to keep out, then reconfigure your data source to omit the specified data attribute, and then subsequently, request data deletion in accordance with New Relic’s personal data deletion request . How do I identify the individuals included in my telemetry data whose data may also be subject to state privacy laws? New Relic’s services by default do not specifically collect names, addresses, dates of birth, or the like, and therefore, New Relic will not have names with state of residency. Depending on the developers that created your software or IT systems, the developers may have opted to include data elements that could include personal information in the Logs data generated from such software or IT systems. Consulate your developers or your software and systems documentation for more information. I am the covered entity and it is my obligation under HIPAA to ensure all business associates sign a business associate agreement with me. Why can my company not use its own BAA? While it may be the covered entity’s obligation, nothing in HIPAA requires that the business associate start with the covered entity’s business associate agreement. New Relic’s business associate agreement is specifically tailored to reflect New Relic’s service offering and its multi-tenant environment. It sets out the specialized processes and procedures in relation to New Relic’s obligations as a business associate to the covered entity that do not provide full records about patients or individuals. These all correlate to the way in which New Relic’s unique services and its multi-tenant infrastructure operate. For example, stock business associate agreements are drafted for any type of vendor that use and disclose large quantities of PHI like medical claims, pharmacy claims, ERAs, health charts, billing &amp; coding, and medical images and will contain requirements for handling these types of PHI directly as if the covered entity itself. New Relic will not handle such types of PHI and does not have mechanisms in place to handle specific requests by the Covered Entity pertaining to such types of PHI.&nbsp; New Relic’s platform was designed to ingest telemetry data and query telemetry data. Any PHI elements will be temporary or ancillary (ee question above) Customers are fully in control of the data sent to New Relic; New Relic will not by default collect information about a patient to confirm the identity of the individual (e.g. first name, last name, home address, group plan ID, member ID, etc.). Because of the foregoing, New Relic will not be able to identify the Individuals impacted in a data incident. New Relic will not be directly interfacing with patients. New Relic was not designed to operate as a system of record for patient care or payments and cannot amend PHI. New Relic can provide a special environment for health care customers, which require coordination between customer and New Relic as specified in New Relic’s BAA. New Relic’s business associate agreement is bespoke to New Relic’s telemetry data platform architecture built on our cloud vendors. New Relic inherits all the features and functionalities as provided by cloud vendors supporting our platform. What about the main agreement between the parties? The New Relic BAA is an addendum to the main agreement between New Relic and our customer and forms part of that agreement. Why are some features, such as Applied Intelligence and others that use AI/ML, not included as a HIPAA Covered Service? New Relic releases new products and features on an ongoing basis. In addition to following a standards-based risk management program for our services, New Relic works with third-party auditors that separately review and verify New Relic is meeting requirements under a recognized privacy and security framework such as SOC. New Relic prioritizes and adds new eligible services based on customer demand. For more information about our business associate program, or to request new HIPAA Covered Services, please speak with your New Relic representative. New Relic realizes the value our services and features provide to all customers; if you are a health care customer, we would love to hear from you. I am responsible for ensuring that only authorized Users can access my HIPAA Account that may contain PHI. How do I add, remove, or manage users in my HIPAA Account? New Relic’s Documentation provides detailed information on how to manage users for a New Relic Account, including a HIPAA Account. Please see here . How does New Relic meet its obligations under HIPAA? Not only are we committed to you as our customer, HHS/OCR can directly oversee business associates like New Relic. New Relic has both a dedicated security and privacy team within our organization who are passionate about delivering and maintaining privacy and security for our HIPAA covered offerings. We will keep your data confidential : All of New Relic’s staff who have access to our customer’s data are committed to confidentiality as part of their terms of employment with New Relic. We keep your data safe and secure : At New Relic, the security of your data is of the utmost importance to us. We engineered our HIPAA offering using the same privacy and security framework we used for FedRAMP. We have implemented robust technical and organisational measures to assist our customers in meeting their compliance needs : At New Relic we know that our customers are subject to compliance obligations under HIPAA. Your users have query and retrieval capabilities in our services to look for your specified data attributes. We will only use approved business associates : All of our own business associates undergo rigorous security and privacy assessment from our security and privacy team. You can be assured that we conduct thorough due diligence prior to onboarding and that we ensure we have the appropriate contractual provisions in place.&nbsp; At all times New Relic remains liable for the acts of our business associates. We will assist you in the event of a data breach : If a data breach occurs at New Relic and your data is affected, we will notify you and we will provide you with details of the breach in order for you to assess the impact it may have upon your organisation.&nbsp; We use an independent auditor and nationally-recognized audit framework : We picked a nationally-recognized and respected audit framework so that you and New Relic are aligned on our privacy and security measures. How can I sign the New Relic BAA? Contact your Account Executive for more information. I would like to ask some questions that are not answered in this FAQs For any additional information you require, you may contact your Account Executive who will be happy to assist you. &nbsp; This information contained in this document does not provide legal advice.&nbsp; We recommend that you consult with your own legal counsel in order to obtain advice specific to your own unique situation and how you intend to use the New Relic services- remember a BAA with New Relic is only necessary if you fall under the conditions set forth in HIPAA. &nbsp; Search toggle Main navigation menu, 6 items Rechercher Submit Plateforme Plateforme d’observabilité intelligente Découvrir la plateforme APM APM 360 Observabilité d&#039;entreprise eAPM Monitoring SAP Serverless Transaction 360 Sécurité Test interactif de sécurité des applications (IAST) Security RX FinOps Intelligence Coûts du cloud Monitoring de l&#039;expérience numérique Monitoring des utilisateurs réels pour navigateurs Monitoring des utilisateurs réels pour mobile Session Replay Intelligence Streaming vidéo et publicitaire Synthetics Monitoring de performance web Intelligence Intégrations agentiques AIOps Monitoring de l&#039;IA Moteur Intelligence New Relic AI Infrastructure Monitoring AWS Cloud Monitoring Azure Cloud Monitoring des performances de bases de données Monitoring Google Cloud Monitoring d&#039;infrastructure Monitoring de Kubernetes Monitoring réseau Monitoring Prometheus Logs Gestion des logs Productivité des développeurs CodeStream Intelligence Architecture de services Capacités de la plateforme Alertes Suivi des changements Dashboards Entity Explorer Errors Inbox Contrôle de la flotte Intégrations OpenTelemetry Contrôle de pipeline Files d&#039;attente et flux de données Tarification Tarification à l&#039;utilisation Tarification basée sur l&#039;utilisation pour l&#039;observabilité full-stack — plateforme tout-en-un. Voir la tarification Gratuit Inscrivez-vous pour bénéficier d'une licence Free Tier gratuite à vie et 100&nbsp;Go/mois d'ingestion de données. 100&nbsp;Go d'ingestion de données Obfuscation automatique des logs Utilisateurs Core et Basic illimités 1 utilisateur Full Platform gratuit Plus de 30 capacités Rétention des données Démarrer gratuitement Standard Pour les petites équipes souhaitant commencer à utiliser l'observabilité. Limité à 5 utilisateurs Full Platform Assistance par tickets offerte SLA de réponse d'assistance de 2 jours ouvrables Authentification unique SAML Tarification Standard Pro Pour les équipes comptant plus de cinq ingénieurs et ayant des workloads complexes. Aucune limite au nombre d'utilisateurs Full Platform provisionnés Plusieurs options d'engagement SLA de réponse d'assistance initiale critique de 2&nbsp;heures Éligibilité à Data&nbsp;Plus Tarification Pro Enterprise Pour les organisations à l'échelle qui souhaitent une sécurité et une assistance avancées. Tout Pro avec en plus&nbsp;: Éligibilité à FedRAMP Moderate et HIPAA avec Data&nbsp;Plus Acheminement prioritaire des tickets SLA de réponse d'assistance initiale critique de 1&nbsp;heure Tarification personnalisée Solutions Les meilleures marques du monde choisissent New&nbsp;Relic Témoignages de nos clients Études de cas Monitoring de l&#039;expérience numérique Passez de la réactivité à la proactivité DevOps Consolidation des outils Open source Secteurs Retail et e-commerce Santé Médias, spectacles, divertissements ou loisirs New Relic pour les startups Organisations à but non lucratif Secteur public Technologies Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Monitoring Prometheus Monitoring SAP ServiceNow New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Enterprise Développeurs Développeurs Monitoring simple de Kubernetes Simplifiez le monitoring Kubernetes avec l&#039;opérateur New Relic Monitoring des applications sur mobile Monitorez les applications mobiles en quelques minutes avec l&#039;installation de quickstarts. Agent New Relic Browser Instrumentation personnalisée avec l&#039;agent de navigateur New Relic. 1 2 3 Documentation populaire Démarrer l&#039;ingestion des données Créer des dashboards personnalisés Examiner des requêtes NRQL Transférer des logs avec un agent d&#039;infrastructure Voir toute la documentation Plus de 780 intégrations Démarrer gratuitement. Python Installation Java Installation PHP Installation Ruby Installation Voir toutes les intégrations New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Ressources Qui sommes-nous&nbsp;? Leadership Recrutement Développement sécurisé New&nbsp;Relic for Students Espace presse ESG Forum de la communauté Assistance technique Témoignages de nos clients Des vidéos et études de cas montrent les stratégies gagnantes des entreprises grâce à l&#039;observabilité. Bibliothèque de ressources E-books, fiches techniques et livres blancs. Blog New Relic Actualité, conseils et meilleures pratiques du secteur. Événements et webinaires Rejoignez-nous à un événement ou une formation. New Relic University Parcours d&#039;apprentissage et formations. Calculateur de la valeur de l&#039;observabilité Découvrez la valeur de New Relic pour votre entreprise. New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 1 2 3 Search toggle Se connecter Se connecter Démarrer gratuitement Obtenir une démo Se connecter Se connecter Démarrer gratuitement Obtenir une démo ENTREPRISE ENTREPRISE Qui sommes-nous ? Recrutement Leadership Impact social Code de conduite ESG Portail des fournisseurs Principes d&#039;IA PRODUIT PRODUIT Intégrations Plateforme Sécurité VALEUR VALEUR Tarification Free Tier New Relic Comparatif New Relic/Datadog Comparatif New Relic/Dynatrace Comparatif New Relic/Splunk RESSOURCES RESSOURCES Blog Études de cas clients Forum de la communauté Documentation Communiqués de presse New Relic University Programme de partenariat Prévisions 2025 sur l&#039;observabilité Professional Services FAQ FAQ Qu’est-ce que le monitoring d’infrastructure ? Qu&#039;est-ce que l&#039;observabilité ? Qu’est-ce que Kubernetes ? Six étapes pour obtenir l&#039;observabilité d&#039;entreprise Les meilleures pratiques de gestion des logs Un seul outil suffit pour le monitoring d&#039;infrastructure et l&#039;APM Guide rapide pour démarrer avec New Relic Raisons pour lesquelles vous avez besoin d&#039;IAST Contactez-nous Conditions de service Politique DMCA Politique de confidentialité Conditions du site web Vos choix de confidentialité Cookies Déclaration sur l&#039;esclavage moderne Avis sur les brevets Français English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. Tous droits réservés.
2026-01-13T09:30:15
https://mspoweruser.com/adultswim-downloader/
Adultswim Downloader: 7 Best Tried &amp; Tested Apps Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 4 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 4 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 4 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 4 weeks ago Get Weekly Updates Adultswim Downloader: 7 Best Tried &amp; Tested Apps Home » Apps Tamal Das Tech Analyst Apps 11 min. read Updated on November 10, 2025 These Adultswim downloader apps allow you to save shows from Adult Swim for offline watching. You won&#8217;t be able to stream your favorite TV shows if you&#8217;re traveling by air, your mobile internet is slow, or you&#8217;re on a camping ground with no WiFi. For such situations, you&#8217;ll need safe software that downloads videos from the Adult Swim TV, website, and YouTube. Let&#8217;s check them out! Best Adultswim Downloader I&#8217;ve tested the following apps extensively. Upon confirming these tools work exactly as the developers claim, I&#8217;ve listed them. You can check out their features, functionalities, and user interface: YTSaver YTSaver has been the undisputed leader of online video and music downloading for years now. It lets you save videos for offline watching from more than 10,000 websites , including Adult Swim. There&#8217;s an auto downloader that grabs any video link you copy. Alternatively, you can open the video URL within the built-in browser that guarantees video download if the website opens. It easily integrates with any system-wide VPN software for anonymous browsing, streaming, and downloads from Adult Swim. Its paid subscriptions start from $9.95 monthly and $25.95 yearly . Pros : There&#8217;s a free trial. Downloads online clips in only two clicks Saves playlists from Adult Swim YouTube. Built-in browser. Convert videos to formats supported by small devices, like iPod, iPhone, Android, etc. Extract audio from videos. Supports all major VPN services. Cons : The free trial only allows you to download three videos. You can&#8217;t install the free trial on the same device more than once. Adult Swim might be blocking YTSaver&#8217;s technology and servers in the future since this isn&#8217;t an officially supported software. It doesn&#8217;t download all Adult Swim videos and shows. Get YTSaver 4k Downloader Another no-brainer is the 4k Downloader. It&#8217;s a true minimalistic tool that only consumes 130 MB of memory when running in the background. Therefore, it&#8217;s suitable for bulk downloads of shows from almost any website, including Adult Swim, YouTube, TikTok, Vimeo, Facebook, Twitch, etc. Its Paste Link tool automatically detects when you copy a video URL from a supported website. When you click on the button, it shows video metadata and a download button. Alternatively, you can use the lightweight built-in browser . The best thing about this tool is you can convert clips to favorite device formats, like Windows , macOS , Linux , iOS , and Android . Its affordable plans start at $15/ year . If you like the app, you can get a lifetime license for a $25 one-time payment for three devices. Pros : Clutter-free and lightweight online video downloader. Easy-to-use user interface, no learning curve even for a first-time user. Built-in video converter. Native streaming web browser. Free trial. Cons : The free trial benefits are limited. You can&#8217;t create custom bookmarks in the native browser. Too many promotional pop-ups, Windows notifications, and random opening of web browsers to the pricing table to push you to buy a license. Runs in the background when you close it, until you end the process from Windows Task Manager. Get 4k Downloader TubeRipper TubeRipper is a simple web app that lets you download videos that stream online from most websites. One of the top supported streaming portals is Adult Swim. There aren&#8217;t many UI buttons, so it&#8217;s the ultimate user-friendly web app . You need to find a working link to an Adult Swim clip and paste it into the Enter audio/video URL or search phrase field. Furthermore, you can go to the Sites portal to find dedicated apps for other platforms. However, you might want to use a browser or system-wide VPN service before using TubeRipper. The website doesn&#8217;t assume any risk of you downloading copyright-protected content online because it states that it&#8217;s just a video downloading tool. Pros : No subscription is required, fully free. Simple user interface. One-click video download from 250+ sites, like ABCNews, CSpan, YouTube, and more. Dedicated site-specific links. Cons : May fail to download Adult Swim clips. Goes offline from time to time when streaming providers crack down on TubeRipper. Needs a VPN in most cases. Might collect device data for online advertising purposes. Doesn&#8217;t work when you use an ad-blocking browser extension. GetFLV GetFLV is an advanced web video downloader with various customizations. It&#8217;s perfectly suited for you if you&#8217;re an expert in video downloading, editing, a streaming channel owner, and more. Firstly, you can use the Video Browser tool to convert any link into a video you can play without connecting to the internet. When saving many clips, you can use the Batch Downloader tool for efficiency. You can also use a VPN service with it. Furthermore, it allows you to use custom Proxy IP addresses for videos that won&#8217;t download in the normal mode. Moreover, you can convert videos to FLV, emulate the Safari browser to download iPad-specific videos, and create screen recordings . You can get the Pro subscription of GetFLV for $59.95 for one PC or Mac for a year . Pros : There&#8217;s a free trial for evaluation purposes. Completely supports the Adult Swim website and YouTube channel. A lightweight desktop app consuming only 150 MB of memory when idle. Cons : The user interface is a bit cluttered and confusing. You can&#8217;t do much using the Video Downloader module. It always works in the full-screen mode. Doesn&#8217;t allow resizing the window size. Often becomes non-responsive when you try to reduce the window size. Get GetFLV Allavsoft Video Downloader Allavsoft is a great tool to download and convert Adult Swim videos to MP4 , AVI , MOV , MPG , etc., in one click. It&#8217;s available for both Windows and macOS devices. The best thing is you can create a specific video conversion profile, let&#8217;s say for an iPod, and all the future downloads will be automatically optimized for it. Another cool thing about Allavsoft is the Merge feature . You can join multiple short clips together to create a long one. Often, Adult Swim releases shows in small episodes so this is especially useful. You can get a paid subscription for as low as $19.99 for a month for up to two devices. Pros : The free trial allows you to download five videos from Adult Swim. It consumes a negligible amount of system memory when running. Download , Convert , and Merge services are all in one app. You can screen record for free. Downloads subtitles when available. Easy to use and navigate. Cons : No built-in web browser. Doesn&#8217;t support custom Proxy IPs. Extensions are only available for Chrome and Firefox. A free trial is available only once for one device. Often needs a VPN connection to work. Get Allavsoft Video Downloader StreamFab Downloader StreamFab is a premium Adultswim downloader. It offers a browser-based experience . Basically, it&#8217;ll allow you to save almost any Adult Swim clips and TV shows that show up on its YouTube channel or the website. You can access the web portal in the Home > Search or visit a website field and hit Enter. As the page loads, you can play any video and download it simultaneously. For the Adult Swim YouTube channel, you can simply use the YouTube module and start saving its content for offline watching. You can get a specific StreamFab downloader for it starting at $12.99 for a month and $39.99 for a lifetime . Pros : There&#8217;s a free trial that allows up to three free video downloads from Adult Swim. Built-in web browser with the bookmark feature. StreamFab supports Adul Swim officially and has a direct portal link in the All Supported Sites module. The Live Streaming feature lets you download special releases and events. Cons : Too many in-device and in-browser ads and pop-ups. The free trial is limited and often doesn&#8217;t work. You can activate a free trial once per account per device. It requires an email address to sign in to the app and activate the free trial. Not suitable for privacy-concerned users. Cluttered user interface. Can consume up to 250 MB of system memory, since it&#8217;s a bulky app. Get StreamFab Downloader Kodi So far, you&#8217;ve gone through the best Adultswim downloader options that work for the website or the YouTube channel. However, if you&#8217;d like to stream the original TV channel on your smart TV or PC and simultaneously save the shows, you can use Kodi . You&#8217;ll find the official channel in the Video add-ons section. You can go there from Kodi Settings > System > Add-Ons > Install from repository > Kodi add-on repository > Video add-ons . You also don&#8217;t need a third-party screen recorder to record and save. Simply install the PVR add-on and set it up to record the videos you&#8217;re streaming. Pros : A free solution to stream and download original Adult Swim content. Fully anonymous. Kodi is useful for watching free premium TV content from most streaming providers. Works on smart TVs. Cons : This is a manual method of downloading shows from Adult Swim. There won&#8217;t be any download manager interface as you see in online tools. You might need a system-wide VPN app if Kodi repositories are actively blocked in your country. Get Kodi How To Download From Adult Swim Now, let me walk you through the simple steps to quickly download your favorite videos from Adult Swim using YTSaver. Download and install YTSaver . Run the app from the desktop and click on Trial to continue to the Home screen. Now, open a video on a web browser by visiting the Adult Swim website. Click on the address bar and press Ctrl + C to copy the URL . As soon as you do this, the YTSaver Autodownloader dialog box will open. Click Download in the bottom right corner. You should now see its status in the Download > Downloading screen. Once it&#8217;s done, right-click on the downloaded item and select the Open File Video location option. You&#8217;ll be taken to the local storage directory where YTSaver saves all your clips. If the above method doesn&#8217;t work, download and run any of the best free VPNs for Windows . Now follow these steps instead: Copy the Adult Swim show link from its website and go to the Online tab. Click on the Enter Video URL field at the top and paste the copied link. When the page loads, scroll down a bit to find the video playback frame. Click on the Play button to stream it. The YTSaver Download button will show up. Click on that to start the download. Is It Legal to Download From Adult Swim? No, it&#8217;s not legal to download videos from Adult Swim since Warner Bros. owns the copyright. The Terms of Use specifically explain this in the Proprietary Rights section: &#8220;&#8230;(all of the foregoing collectively “Materials”) are proprietary information and materials that are owned by Adult Swim, its licensors, and other sources, and are protected by applicable U.S. and international intellectual property and other laws, including but not limited to copyright, trademark and patent laws. No Materials may be copied, reproduced, republished, uploaded, posted, transmitted, distributed, decompiled, reverse engineered, disassembled, or used in any manner, except as expressly permitted by these Terms of Use. &#8220; If you still want to download, use a VPN for anonymity, avoid sharing files publicly, and never host public viewing sessions, as these actions violate copyright laws. Also, do it after assessing the risks of downloading copy-protected content in your country of residence. Disclaimer: The information provided on our website is intended for educational and informational purposes only. We do not endorse or promote the unauthorized downloading or circumvention of copyright protection mechanisms of any service mentioned on our site. We understand and respect content creators&#8217; and service providers&#8217; intellectual property rights. Our discussions and reviews of downloader tools aim to inform our readers about the technological capabilities and potential legal considerations of using such tools. We strongly advise our readers to always comply with the respective platforms&#8217; terms of service and respect copyright laws. By using our website, you acknowledge and agree that you are responsible for ensuring your actions are legal and compliant with the terms of service of the platforms discussed. We disclaim any liability for the unauthorized or illegal use of downloader tools and any infringement of intellectual property rights. Summary Now you know how to find the best Adultswim downloader that actually works. If you&#8217;re going for a third-party app with a subscription, I suggest trying YTSaver&#8217;s monthly plan. On the other hand, if you&#8217;re looking to download content from the site online, use TubeRipper with a trusted VPN solution, like IPVanish , Hotspot Shield , Google One VPN , etc. Finally, if you wish to save Adult Swim videos anonymously, try Kodi, the Adult Swim Kodi add-on, and the PVR add-on. Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://newrelic.com/pt/termsandconditions/hipaabaafaq
HIPAA BAA FAQ Pular para o conteúdo principal No momento, esta página está disponível apenas em inglês. HIPAA &amp; BAA FAQ New Relic Telemetry Data Platform, Full-stack Observability, and Applied Intelligence solutions Thank you for considering becoming a customer of New Relic. New Relic’s offerings are different from other SaaS offerings you may have encountered before. To avoid any misunderstandings about how New Relic fits into your technology estate, this FAQ is intended to paint a clearer picture of what we do, how we do it, why we do it, and where PHI may end up with New Relic. What does New Relic do? New Relic provides software developers and teams that run the software the tools needed to identify issues with that software. New Relic does not provide IT solutions for health care treatment or payment, nor many of the operations. Our technology performance-monitoring solutions are intended for use cases with non-sensitive timing and metric data, which you control by your deployment and configuration choices. We provide SRE and DevOps teams that develop, maintain, or update your software and technology solutions control over the data elements sent to New Relic. Health IT Examples Does New Relic do this or provide this? Primary Care Clinical decision support ❌ Computerized disease registries ❌ Computerized provider order entry ❌ Consumer health IT applications ❌ Electronic medical record systems ❌ Electronic prescribing ❌ Telehealth ❌ Revenue Cycle Charge capture ❌ Coding ❌ Claims submission ❌ Insurer communications ❌ Payment collections ❌ Medical service review ❌ Payment Billing ❌ Risk adjustment ❌ Reviewing for medical necessity, coverage, justification of charges and the like ❌ Utilization review activities ❌ Disclosure to consumer reporting agencies ❌ Health care operations Conducting quality assessment and improvement activities, population-based activities relating to improving health or reducing health care costs, and case management and care coordination; ❌ Reviewing the competence or qualifications of health care professionals, evaluating provider and health plan performance, training health care and non-health care professionals, accreditation, certification, licensing, or credentialing activities; ❌ Underwriting and other activities relating to the creation, renewal, or replacement of a contract of health insurance or health benefits, and ceding, securing, or placing a contract for reinsurance of risk relating to health care claims ❌ Conducting or arranging for medical review, legal, and auditing services, including fraud and abuse detection and compliance programs;&nbsp; ❌ Business planning and development, such as conducting cost-management and planning analyses related to managing and operating the entity; and&nbsp; ❌ Business management and general administrative activities related to implementing and complying with the Privacy Rule and other Administrative Simplification Rules, resolution of internal grievances, sale or transfer of assets, creating de-identified health information or a limited data set, and fundraising for the benefit of the covered entity. ❌ &nbsp; Does New Relic directly interact with patients on a covered entity’s behalf? No. New Relic’s users are generally developers, IT operations, and site reliability engineers. In general, New Relic’s subscriptions prohibit sublicensing access and use of New Relic’s SaaS to your own customers. How does New Relic provide its solutions? New Relic provides a database, which we call the Telemetry Data Platform , that stores telemetry data about software performance. New Relic provides a graphical user interface via our website that allows users to quickly understand the health of frontend software and backend software, which we call the Full-Stack Observability . New Relic provides AI-powered solutions, which we call Applied Intelligence , that run on the telemetry data and can help automate identifying the root cause of a problem with software. Why does New Relic provide its solutions? Software code is bigger and more distributed than ever before. New Relic’s solutions can help your teams answer software problems and questions like: Where in my distributed technology estate is the slowdown occurring ? What is the root cause of my slow website ? What patient treatment or payment services do New Relic provide covered entities? None. New Relic’s solutions help software developers identify issues with software. Can I see what’s in the data sent from my systems to New Relic? New Relic’s data dictionary defines many of the common data attributes processed by New Relic.&nbsp; New Relic users can view data using New Relic’s data explorer to view the telemetry data elements (including in JSON format) in the New Relic account. Your teams, solely within their election, may configure your licensed software to send custom telemetry data. That is wholly within your teams’ control and purview. You can view these customized data in data explorer as well if you would like to view the data elements for such custom telemetry data. Logs data is generally unstructured, raw “reports” generated by your software. Like other telemetry data available to users, if you have a New Relic account, you can view these Logs in New Relic’s data explorer and the Logs UI in New Relic One. What kind of health information technology does New Relic provide to covered entities? None. New Relic: Does not provide an electronic medical record or a personal health record;&nbsp; Is not an electronic data interchange; and Is not a health information exchange or health information organization Depending on the technologies that your teams may use, New Relic can help your teams that build, operate, and maintain your health information technology identify issues with such software. Why does New Relic sign a BAA then? Where will PHI likely end up? If you use New Relic Browser in your patient-facing website, IP addresses are used to derive regional location information, and then the IP address is subsequently overwritten. Please see additional information provided here . If you use New Relic Mobile in your patient-facing mobile application, IP addresses are used to derive regional location information and subsequently discarded. Please see additional information provided here . If:&nbsp; Your applications or your infrastructure (servers, hypervisor, etc) process PHI Your applications or your infrastructure generate Logs that may include personal information relating to a patient You configure your applications or your infrastructure to send those Logs to New Relic Then PHI may end up in the Logs that New Relic receives from your software and on your behalf. “The HIPAA Rules generally require that covered entities and business associates enter into contracts with their business associates to ensure that the business associates will appropriately safeguard protected health information” (published by HHS). If you are a covered entity and will have PHI in the data that you send to us, you need a business associate agreement with New Relic. Do all covered entities have to sign a business associate agreement with New Relic? According to HHS : A “business associate” is a person or entity that performs certain functions or activities that involve the use or disclosure of protected health information on behalf of, or provides services to, a covered entity.&nbsp; Not all covered entities sign a business associate agreement with New Relic because some covered entities do not send protected health information to New Relic. Covered entities can (i) limit the scope of systems performance monitoring and (ii) control the telemetry data sent from their software and IT systems so that it excludes any PHI. How can I help reduce or limit any PHI in the telemetry data that I send to New Relic? Some options for your consideration: Carefully choose which applications and infrastructures you want to instrument and measure performance. Some or many of your systems may never process any PHI and therefore monitoring those systems will unlikely contain any PHI. Reduce or limit the use of any custom events so they do not contain any PHI elements. Talk to your legal, privacy, or compliance officers if you need assistance determining whether your data attributes or your proposed JSON schema will contain any PHI elements. Reduce or limit the use of dimensional metrics that may include any personal identifiers about patients. Review Service Maps in New Relic One to determine whether there are upstream connections to any patient-facing services or connections to systems that may contain PHI. Use New Relic’s data explorer to review every type of data at a regular cadence to see if there are any PHI elements. Add your legal, privacy, or compliance officers as a New Relic user so they can use New Relic’s data explorer to review for themselves. There’s a separate subsection in New Relic’s data explorer for “Custom Events” If you are implementing rules on your systems to remove identifiers in any telemetry data before sending it to New Relic, then consult with your legal, privacy, or compliance officers by sharing the JSON or raw file types (under New Relic’s data explorer ) to confirm the telemetry data has been appropriately de-identified in accordance with HIPAA . Invite your legal, privacy, or compliance officer to review any one of your data in New Relic’s data explorer Use New Relic Log drop filter rules to drop Logs data that meet your specified criteria. If you find PHI that you prefer to keep out, then reconfigure your data source to omit the specified data attribute, and then subsequently, request data deletion in accordance with New Relic’s personal data deletion request . How do I identify the individuals included in my telemetry data whose data may also be subject to state privacy laws? New Relic’s services by default do not specifically collect names, addresses, dates of birth, or the like, and therefore, New Relic will not have names with state of residency. Depending on the developers that created your software or IT systems, the developers may have opted to include data elements that could include personal information in the Logs data generated from such software or IT systems. Consulate your developers or your software and systems documentation for more information. I am the covered entity and it is my obligation under HIPAA to ensure all business associates sign a business associate agreement with me. Why can my company not use its own BAA? While it may be the covered entity’s obligation, nothing in HIPAA requires that the business associate start with the covered entity’s business associate agreement. New Relic’s business associate agreement is specifically tailored to reflect New Relic’s service offering and its multi-tenant environment. It sets out the specialized processes and procedures in relation to New Relic’s obligations as a business associate to the covered entity that do not provide full records about patients or individuals. These all correlate to the way in which New Relic’s unique services and its multi-tenant infrastructure operate. For example, stock business associate agreements are drafted for any type of vendor that use and disclose large quantities of PHI like medical claims, pharmacy claims, ERAs, health charts, billing &amp; coding, and medical images and will contain requirements for handling these types of PHI directly as if the covered entity itself. New Relic will not handle such types of PHI and does not have mechanisms in place to handle specific requests by the Covered Entity pertaining to such types of PHI.&nbsp; New Relic’s platform was designed to ingest telemetry data and query telemetry data. Any PHI elements will be temporary or ancillary (ee question above) Customers are fully in control of the data sent to New Relic; New Relic will not by default collect information about a patient to confirm the identity of the individual (e.g. first name, last name, home address, group plan ID, member ID, etc.). Because of the foregoing, New Relic will not be able to identify the Individuals impacted in a data incident. New Relic will not be directly interfacing with patients. New Relic was not designed to operate as a system of record for patient care or payments and cannot amend PHI. New Relic can provide a special environment for health care customers, which require coordination between customer and New Relic as specified in New Relic’s BAA. New Relic’s business associate agreement is bespoke to New Relic’s telemetry data platform architecture built on our cloud vendors. New Relic inherits all the features and functionalities as provided by cloud vendors supporting our platform. What about the main agreement between the parties? The New Relic BAA is an addendum to the main agreement between New Relic and our customer and forms part of that agreement. Why are some features, such as Applied Intelligence and others that use AI/ML, not included as a HIPAA Covered Service? New Relic releases new products and features on an ongoing basis. In addition to following a standards-based risk management program for our services, New Relic works with third-party auditors that separately review and verify New Relic is meeting requirements under a recognized privacy and security framework such as SOC. New Relic prioritizes and adds new eligible services based on customer demand. For more information about our business associate program, or to request new HIPAA Covered Services, please speak with your New Relic representative. New Relic realizes the value our services and features provide to all customers; if you are a health care customer, we would love to hear from you. I am responsible for ensuring that only authorized Users can access my HIPAA Account that may contain PHI. How do I add, remove, or manage users in my HIPAA Account? New Relic’s Documentation provides detailed information on how to manage users for a New Relic Account, including a HIPAA Account. Please see here . How does New Relic meet its obligations under HIPAA? Not only are we committed to you as our customer, HHS/OCR can directly oversee business associates like New Relic. New Relic has both a dedicated security and privacy team within our organization who are passionate about delivering and maintaining privacy and security for our HIPAA covered offerings. We will keep your data confidential : All of New Relic’s staff who have access to our customer’s data are committed to confidentiality as part of their terms of employment with New Relic. We keep your data safe and secure : At New Relic, the security of your data is of the utmost importance to us. We engineered our HIPAA offering using the same privacy and security framework we used for FedRAMP. We have implemented robust technical and organisational measures to assist our customers in meeting their compliance needs : At New Relic we know that our customers are subject to compliance obligations under HIPAA. Your users have query and retrieval capabilities in our services to look for your specified data attributes. We will only use approved business associates : All of our own business associates undergo rigorous security and privacy assessment from our security and privacy team. You can be assured that we conduct thorough due diligence prior to onboarding and that we ensure we have the appropriate contractual provisions in place.&nbsp; At all times New Relic remains liable for the acts of our business associates. We will assist you in the event of a data breach : If a data breach occurs at New Relic and your data is affected, we will notify you and we will provide you with details of the breach in order for you to assess the impact it may have upon your organisation.&nbsp; We use an independent auditor and nationally-recognized audit framework : We picked a nationally-recognized and respected audit framework so that you and New Relic are aligned on our privacy and security measures. How can I sign the New Relic BAA? Contact your Account Executive for more information. I would like to ask some questions that are not answered in this FAQs For any additional information you require, you may contact your Account Executive who will be happy to assist you. &nbsp; This information contained in this document does not provide legal advice.&nbsp; We recommend that you consult with your own legal counsel in order to obtain advice specific to your own unique situation and how you intend to use the New Relic services- remember a BAA with New Relic is only necessary if you fall under the conditions set forth in HIPAA. &nbsp; Search toggle Main navigation menu, 6 items Search Submit Plataforma Plataforma de Observabilidade Inteligente Ver plataforma APM APM 360 Observabilidade de Negócios eAPM Monitoramento SAP Serverless Transação 360 Segurança Teste Interativo de Segurança de Aplicações (IAST) Segurança RX FinOps Inteligência de custos na nuvem Monitoramento da experiência digital Monitoramento de Usuário Real para Navegador Monitoramento de Usuário Real para Dispositivos Móveis Session Replay Streaming de vídeo e inteligência de anúncios Synthetics Monitoramento do desempenho de sites Inteligência Integrações de agentes AIOps AI Monitoring Motor de inteligência New Relic AI Infraestrutura Monitoramento de nuvem da AWS Monitoramento de nuvem do Azure Monitoramento de desempenho de banco de dados Monitoramento de nuvem do Google Monitoramento de Infraestrutura Monitoramento de Kubernetes Monitoramento de rede Monitoramento do Prometheus Logs Gerenciamento de logs Produtividade do desenvolvedor CodeStream Inteligência de arquitetura de serviços Recursos da plataforma Alertas Monitoramento de Alterações Dashboards Explorador de entidades Errors Inbox Controle de agentes Integrações OpenTelemetry Controle de pipeline Filas e fluxos Preços Preços simples e transparentes. Preços baseados no uso para observabilidade full-stack, plataforma completa. Ver os preços Gratuito Cadastre-se para ter acesso gratuito com nosso nível gratuito perpétuo e 100&nbsp;GB/mês de ingestão inclusos. 100 GB de ingestão de dados Ofuscação de logs automática Uso ilimitado de usuários Basic e Core Um usuário Full Platform gratuito Acesso a mais de 30 recursos Retenção de dados Comece grátis Standard Para pequenas equipes que desejam começar a usar a observabilidade. Limitado a 5 usuários Full Platform Disponibilidade de abrir chamado com o time de ticket SLA de 2 dias úteis para resposta de suporte Autenticação única SAML Obtenha preços Standard Pro Para equipes com mais de cinco engenheiros e workloads complexos. Sem limite máximo de usuários Full Platform que você pode provisionar Opções de compromisso SLA de 2 horas para resposta de suporte inicial crítico Elegibilidade para Data Plus Obtenha preços Pro Enterprise Para organizações em escala com necessidades avançadas de suporte e segurança. Tudo do Pro, e mais: Elegibilidade FedRAMP Moderado e HIPAA com Data Plus Chamados com maior prioridade SLA de 1 hora para resposta de suporte inicial crítico Obtenha preços personalizados Soluções As empresas líderes mundiais trabalham com a New Relic. Histórias de clientes Casos de uso Monitoramento da experiência digital Vá do reativo para o responsivo DevOps Consolidação de ferramentas Código aberto Setores Varejo e e-commerce Saúde Mídia e entretenimento New Relic para startups Sem fins lucrativos Setor público Tecnologias Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Monitoramento do Prometheus Monitoramento SAP ServiceNow New Relic Now Assista sob demanda e descubra os recursos e capacidades mais recentes que estão moldando a observabilidade. Gartner® Magic Quadrant™ New Relic reconhecida 2x como líder pelo Gartner em DEM. 2025 Gartner® Magic Quadrant™ New Relic é reconhecida como líder em observabilidade pela 13ª vez. Leia mais. 1 2 3 Enterprise Desenvolvedores Desenvolvedores Monitoramento simples de K8 Simplifique o monitoramento do Kubernetes com o operador da New Relic. Monitorar aplicativos para dispositivos móveis Monitore aplicativos híbridos para dispositivos móveis em minutos com instalações rápidas. Agente do New Relic Browser Instrumentação personalizada com o agente do New Relic Browser. 1 2 3 Documentos populares Iniciar ingestão de dados Criar dashboards personalizados Examinar consultas NRQL Encaminhar logs usando agente de infraestrutura Ver todos os documentos 780+ Integrações Comece grátis agora mesmo. Python Install Java Install PHP Install Ruby Install Veja todas as integrações New Relic Now Assista sob demanda e descubra os recursos e capacidades mais recentes que estão moldando a observabilidade. Gartner® Magic Quadrant™ New Relic reconhecida 2x como líder pelo Gartner em DEM. 2025 Gartner® Magic Quadrant™ New Relic é reconhecida como líder em observabilidade pela 13ª vez. Leia mais. 1 2 3 Recursos Sobre nós Liderança Carreiras Desenvolvedor seguro New Relic para estudantes Sala de imprensa ESG Fórum da comunidade Suporte técnico Histórias de clientes Vídeos e estudos de caso mostram como as empresas ganham com a observabilidade. Biblioteca de recursos E-books, planilha de dados e artigos. Blog da New Relic Atualizações, dicas e práticas recomendadas do setor. Eventos e webinars Junte-se a nós nos treinamentos ou eventos futuros. New Relic University Percursos de aprendizagem e cursos de treinamento. Calculadora de valor da observabilidade Descubra o valor da New Relic para o seu negócio. New Relic Now Assista sob demanda e descubra os recursos e capacidades mais recentes que estão moldando a observabilidade. 2025 Gartner® Magic Quadrant™ New Relic é reconhecida como líder em observabilidade pela 13ª vez. Leia mais. Gartner® Magic Quadrant™ New Relic reconhecida 2x como líder pelo Gartner em DEM. 1 2 3 Search toggle Entrar Entrar Comece grátis Solicite demonstração Entrar Entrar Comece grátis Solicite demonstração EMPRESA EMPRESA Sobre nós Carreiras Liderança Impacto social Código de conduta ESG Portal de fornecedores Princípios de IA PRODUTO PRODUTO Integrações Plataforma Segurança VALOR VALOR Preços Nível gratuito da New Relic New Relic versus Datadog New Relic versus Dynatrace New Relic versus Splunk RECURSOS RECURSOS Blog Estudos de caso de clientes Fórum da comunidade Documentação Comunicados à imprensa New Relic University Programa de parceria Previsão de observabilidade de 2025 Professional Services PERGUNTAS FREQUENTES PERGUNTAS FREQUENTES O que é monitoramento de infraestrutura? O que é observabilidade? O que é Kubernetes? Seis passos para alcançar a observabilidade de negócios Práticas recomendadas de gerenciamento de logs Por que você precisa de uma ferramenta única para o monitoramento de infraestrutura e APM Guia rápido para começar a usar a New Relic Por que você precisa de IAST Fale conosco Termos de serviço Política do DMCA Política de privacidade Termos do site Suas opções de privacidade Política de cookies Declaração de Escravidão Moderna Aviso de patente Português English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. Todos os direitos reservados
2026-01-13T09:30:15
https://mspoweruser.com/airdroid-remote-support-review/
AirDroid Remote Support Review: Tried Firsthand Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates AirDroid Remote Support Review: Tried Firsthand Home » Software Tamal Das Tech Analyst Apps 11 min. read Updated on November 8, 2025 In this in-depth AirDroid Remote Support review, you&#8217;ll find a detailed analysis of its features and functionalities from a real user&#8217;s perspective. Screen mirroring and remote device control have been here for a long time to help PC users and technical support providers communicate and resolve issues seamlessly. However, it has never been much easier before the AirDroid Remote Support app. This user-centric and easy-to-operate app hides all the technically complex processes of remote desktop protocol and offers a ridiculously easy user experience. For organization users, it offers advanced user management and client-handling interface. In a nutshell, AirDroid Remote Support makes remote technical support to service PCs, Androids, and iPhones truly easier than any other product you might have used so far. I&#8217;ve used this screen sharing, remote PC control, and messaging tool for more than a week as an end user as well as IT admin of a business organization. I&#8217;ve outlined my findings about its features and user experiences below so you can make an informed decision when buying remote desktop support software. Pros Cons Super easy to connect to a remote PC, Android, and iPhone. The most useful features are behind a paywall. Comes with a responsive remote support user interface that automatically adjusts the screen size depending on the device you connect to. It&#8217;s pricing structure is quite expensive. It&#8217;s a lightweight desktop app consuming only 230 MB of RAM and negligible CPU and Power resources. The client and user management web app is a bit tough to navigate. Works seamlessly on popular operating systems and facilitates cross-OS remote desktop support capabilities. File transfer is often sluggish even when you&#8217;re connected to a high-speed internet network. Offers a web app for management of clients, users, history logs, and more. You can&#8217;t directly control any Android or iOS mobile phones from the support end. You can only draw instructions. A black screen mode helps technical support providers show custom messages on the remote device to conceal confidential support tools and processes. The Android edition prompts end users to install an unofficial APK which might scare some. Get AirDroid Remote Support AirDroid Remote Support Features Now, let me show you the features and functionalities from a first-hand user&#8217;s and IT support specialist&#8217;s perspective: Zero Configuration Remote Desktop Support You might have experienced intermittent issues or configuration challenges when using the Windows Remote Desktop tool. AirDroid Remote Support is a one-of-a-kind way to share your screen and get tech support from afar. Just install the main app and log in with your subscription info. The tool will set up your device and handle all future remote connections. When you install the client remote support app on your customers&#8217; PC, Android, or iPhone, it doesn&#8217;t require any account login or sign-up . AirDroid Remote Support automatically assigns an exclusive device ID and a random password for all incoming connections. With this app, you no longer need to configure network addresses, sharing settings, server addresses, etc., anymore. Just install the app and start supporting your customers remotely in less than 3 minutes. Text and Voice Chat Once connected remotely to a client&#8217;s device, your support staff can use the messaging interface to send text messages . If texting isn&#8217;t enough, technical support specialists can also call the user through the Voice Call feature. Both Text and Voice messaging are available in the top ribbon. When activated, these tools open on the right-side navigation panel . The messaging interface also allows technical support specialists to send files and voice messages in a few clicks. Ad-Hoc Remote Support Suppose a client requires quick technical support but their PC isn&#8217;t registered in your dashboard. Your agents can still service the device using the ID Connect feature. You simply need to direct the user to install the RemoteSupport Desktop app for clients . Once the app is up and running, it&#8217;ll show a 9-digit unique ID and a connection authentication password . The latter changes frequently, so just having the 9-digit ID won&#8217;t work for remote connection. That&#8217;s a pretty strong security feature. Now, your support agents can use the same AirDroid Remote Support desktop app for ad-hoc connection by entering the ID and password in the ID Connect field . Attended and Unattended Saved Users Saving the unique IDs and connection passwords for client PCs can be a daunting task. AirDroid Remote Support has eliminated this manual task by including a feature that allows you to save client devices as Attended or Unattended users. If you enlist a PC as an Attended client, the owner needs to be present when troubleshooting. However, for the Unattended status, no one needs to be on the recipient&#8217;s side during troubleshooting. The latter is particularly suitable for organizational device management . Your business can use this feature for all employee PCs your IT admin needs to remotely access for things like updating the system, fixing intermittent issues, and so on. As a technical support service provider, your organization can sign up repeat customers through this function for convenience and seamless customer support. Security Policy Management You can tweak the security settings for saved devices to keep your clients or employees safe and secure. These policies make sure that the tech support team follows the same security rules when they&#8217;re working on internal or external devices. You can enable these settings from the Security Policy menu in the Remote Support tab in the web app. Cross-Platform Remote Support The AirDroid Remote Support tool lets you help customers and your own employees, no matter what kind of device they&#8217;re using. You don&#8217;t have to limit your user base or your employees&#8217; devices to just Windows. We&#8217;ve got the software and server systems in place so you can support any kind of computer as outlined below: All editions of Windows Android smartphones and tablets iPhones and iPads However, the saved device feature is only limited to Windows and Android devices . Your team won&#8217;t be able to save Apple devices in the Groups section for Attended or Unattended remote access in the future. For Apple devices, the owner must be present all the time to share the unique device ID as well as the randomly changing connection password . Chatbots Another AirDroid product, Chatinsight.AI, shares the same web dashboard with Remote Suppor and has the necessary generative AI integrations so you can create a chatbot to support your external and internal customers with their basic questions. There is a detailed knowledge base to help you train these chatbots from a concise or elaborate model. You can access these functions using the Bots and Knowledge Base menus in the Chatinsight.AI module of the AirDroid Business web app . It&#8217;s one of the best AI tools for businesses . During my AirDroid Remote Support review, I noticed that the Chatinsight.AI tool uses GPT-3.5 and GPT-4 gen AI engines. The basic AI feature is available for free. However, for more credits per month , GPT-4 access , additional bots , extra document storage , custom branding , etc., you must buy a paid subscription. Data Security and Privacy The Sand Studio, the developer of the AirDroid Remote Support app, maintains all of its remote servers with Amazon Web Services . Therefore, all of its servers comply with the ISO 27001 information security management systems (ISMS) standard. Below you can find other notable security features of this remote desktop app: 80% of the remote connections use TLS tunnel protocols , like WSS and HTTPS . 20% of remote session events might use either UDP or TCP protocols. All of the remote desktop sessions use the AES-256 encryption technology . There are appropriate Distributed Denial of Service (DDoS) protection measures in place to offer maximum SLAs throughout the day. Two-factor authentication for support staff and client PCs. Role-based access protocols so you can create a hierarchy of agents and team leads. All APK downloads are catered through the Amazon CloudFront content delivery system. User Interface and Experience I&#8217;ve used more than 15 remote support desktop apps and have found AirDroid Remote Support to be the easiest to use among all screen-sharing tools. It has three different user interfaces. The user interfaces for the support desk and the end-user are the simple ones. You might find the web app a bit challenging since it&#8217;s for managing a large number of users , connections , functionalities , and logs . The simplest of all three is the device to be serviced remotely. Contrarily, the AirDroid Remote Support interface of the originating device is elaborate yet easy to navigate. The Home shows all the services activated for your business subscription. You actually need to use the ID Connect screen to send support requests to unregistered customers or clients. Suppose your business has already set up Attended or Unattended automated remote support connections with registered users. In this case, you&#8217;ll see those registered PC names in the left-side navigation panel below each group. All you need to do is select anyone from the list and hit Connect . For Unattended users, you&#8217;ll gain access without any inputs from the recipient. However, for Attended users, you must initiate a chat or voice call with the user to ask them to allow the incoming support connection. The online control panel is more elaborate than the desktop apps. Here, you get dedicated tabs for different configurations or services under the following headers: AirDroid Business: This wizard is for activation and controlling of remote device management solutions. Remote Support: Here, you can customize various important aspects of remote desktop support, like Security Policy , Members &amp; Groups , and Device List . You&#8217;ll also find here the usage from the Dashboard and Logs menu. All of these are easily accessible from the left-side navigation panel. ChatInsight.AI: This module allows you to create knowledgebase and customer service bots for automated technical support. When you sign up for the first time, you get a test bot and knowledge base so you can familiarize yourself with the technology. Also, the New Bot creation wizard comes with enough instructions. From a user experience standpoint, I found all the apps pretty straightforward to navigate, even as a first-time user. And as a regular user, you don&#8217;t have to memorize where all the functions are. All the features and their buttons are right there in front of you, and the interfaces are simple, so it&#8217;s easy to use the app. Customer Support AirDroid Remote Support offers an AI-based in-app chat as customer support. You can use this to discover help articles, documentation, and manuals to set up and use the remote desktop app efficiently. If the generative AI can&#8217;t answer your question, you can email the AirDroid Remote Support&#8217;s customer success desk. During my AirDroid Remote Support review, I emailed the team to assess their response quality and speed. The customer success team responded within 20 hours . Pricing You can download and try out AirDroid Remote Support for free to see if it meets your needs before purchasing the full software. If you like what you see and find the remote desktop support tool useful, you can subscribe to the paid editions, like Basic and Standard . The tool developer is also planning on launching a Premium subscription tier soon. Below is a comparison of the three available subscription options for AirDroid Remote Support: Features Free Plan Basic Plan for $199.00/year Standard Plan for $599.00/year Connection Originating Devices Mac and Windows Android, iOS, Web, Mac, and Windows Android, iOS, Web, Mac, and Windows Destination Devices Windows only Android, iOS, and Windows Android, iOS, and Windows Users One One Unlimited Remote Support Hours 10 hours/ month 50 hours/ month. You can buy more hours. Unlimited Unattended Device Types Windows Windows Windows and Android Limits for Unattended Devices 3 Windows devices 3 Windows devices 300 Windows and Android devices Connection Via ID Available Available Available Screen Mirroring Available Available Available Voice and Chat Communications Available Available Available File Transfer Available Available Available Black Screen Mode Not available Available for Windows Available for Windows and Android AR Camera Not available Android and iOS Android and iOS Security Policy Not available Available Available Device Group Management Not available Not available Available Get AirDroid Remote Support AirDroid Remote Support Review &#8211; Verdict If you&#8217;ve gone through the AirDroid Remote Support review so far, you should have found that the tool stands out from popular alternatives, like Windows Remote Desktop, AnyDesk, TeamViewer , and so on. While other options require lots of settings and learning, AirDroid Remote Support is pretty simple to set up and use. Plus, it&#8217;s easy to learn. Since it has lots of security features, you can use it in confidential business situations. Did you try it after reading this review? Have you discovered any interesting features that I might have missed? Comment below and let everyone know. Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://mspoweruser.com/deep-art-effects-review/
Deep Art Effects Review: Tested First-Hand Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates Deep Art Effects Review: Tested First-Hand Home » Apps Tamal Das Tech Analyst AI 20 min. read Updated on November 6, 2025 Read this Deep Art Effects review to see if it&#8217;s the right image editing tool for you. I used it for numerous days from various points of view to find out if it&#8217;s as effective as advertised. I&#8217;ve covered its features, pricing, customer support, data privacy, and more from a first-hand user&#8217;s perspective. I&#8217;ve also thrown in a quick step-by-step guide to help you get started. Sounds good? Let&#8217;s dig in! What Is Deep Art Effects? Deep Art Effects is an AI-powered tool that applies various art styles to your photos and videos . Say you&#8217;d like to transform your family vacation video into an anime-styled piece of content for online publishing. Or, you want to turn a selfie into a Renaissance portrait. Then, you need this app! To help with that, Deep Art Effects takes two inputs: your photo or video (the input content) and a famous artwork (the reference style). By dissecting the details in your content and the artistic elements of the style (brushstrokes, colors, patterns) image, the tool intelligently combines them. The result is a whole new image or video, where your original content is infused with the artistic spirit of your chosen style. The tool also contains a library of pre-defined artistic styles , from classic impressionism to modern pop art. You can even produce custom styles to achieve a truly unique artwork. With its user-friendly interface , you can control the intensity of the style application. Therefore, you can find the perfect blend between your video or photo&#8217;s content and the AI-produced artistic amalgamation. Pros Cons Offers a limited free trial with access to its basic AI image processing features. All downloads from the free trial app come with a watermark. 100+ image styling models. The free trial lacks advanced features like colorizing pictures , batch processing, webcam mode, video rendering, and more. All style templates provide a clear explanation like the artist&#8217;s name, year of the artwork, and style type. The tool has a moderate-level learning curve. You can preview all artwork styling templates. It doesn&#8217;t support navigation options like undo, redo, go back, etc. It offers advanced AI tools like Intelligent Resize, AI background removal, Colorize Picture, Oil Filter, and more. The Bokeh feature isn&#8217;t up to the mark. Offers a randomizer feature that creates unique pictures from a reference. It&#8217;s a demanding graphics processing tool, so it requires a moderate to high-end PC for effective use. Straightforward user interface and minimalistic UI elements. Certain UI elements lack descriptions/pop-up texts. No need for complicated prompts to command the AI art generator . You must buy separate subscriptions for the desktop and mobile editions. Try Deep Art Effects for free Features of Deep Art Effects Now let me introduce you to the cool features this AI image and video editing tool offers: User Interface and Experience Deep Art Effects&#8217;s user interface is easy to learn. All the functionalities have been organized in a way that you can easily remember where the important functionalities are. Firstly, there&#8217;s a large canvas where all the image manipulation and style transformation takes place. It&#8217;s right in the center of the app. Above the canvas, you find the primary AI image manipulation models: Art Style AI Abstract AI Vincent AI Artistic AI Below the canvas, there are built-in artistic style filters and custom artwork input options. On the right-hand side, you get a navigation pane for AI model-specific image quality control tools. Find below the options to choose from: Art Style AI: No customizations are available. Abstract AI: Brush Size and Style Weight. Vincent AI: Brush Size and Style Weight Artistic AI: Brush Size, Style Weight, and Optimization Iterations. The left-side navigation panel contains color-editing tools, like: Intensity Contrast Brightness Saturation Hue Blur Sharpen Contours Bokeh Greyscale Original Colors Mirror Interacting with the app is easy. You don&#8217;t need to configure many settings or create highly complicated AI prompts to edit pictures. You simply need to click three buttons when you choose to use the default configurations. Also, these steps are common for all four AI models of the Deep Art Effects tool. You can quickly change the tool UI language as well &#8211; the app supports 14 different options: You can choose from popular languages like German, French, Japanese, Italian, English , and more. One of the major drawbacks of the user experience is undoing any changes in the target image imported to the canvas. If you click on any native or custom filter, the tool promptly modifies the target image and you can&#8217;t undo it. Also, if the AI model takes some time to process the output image, you can stop the process. Still, the tool will introduce some changes, making you upload the image again . Another improvement would be providing UI text and instructions for the selective rendering filters: If you&#8217;ve installed the tool for months but haven&#8217;t explored the technical documentation yet, you wouldn&#8217;t know the utility of these small icons. Art Style AI Art Style AI presents a collection of filters, each inspired by a different artistic movement or famous artist. If you want to turn your portrait into a swirling Van Gogh masterpiece or a stark Mondrian composition use this generative AI model. Firstly, Art Style AI analyzes your photo&#8217;s composition, colors, and shapes. Then, it applies the chosen style&#8217;s characteristics. Finally, it creates a unique artwork that blends your photo with the essence of the artistic movement. You can choose unique and cool artistic styles from more than 120 filter s. The developers also add more filters with the new tool updates. All of the style references come with extensive descriptions and a detailed preview . You can click on the information button on the individual style templates to see the details. The AI model produces high-quality outcomes when you use the built-in artwork style references. So, if you need to apply highly artistic and elegant filters to your portraits or panoramic pictures, you should use this feature. Abstract AI Abstract AI is best suited to transfer custom abstract artwork style to normal panoramic and portrait images. Hence, the custom reference input should always be an abstract artwork. Firstly, the generative AI model breaks down the input image into its fundamental building blocks: shapes, colors, and textures. Then, it reassembles these elements in a new, abstract composition. Imagine your photo transformed into a vibrant explosion of colors reminiscent of Jackson Pollock&#8217;s splatters . Alternatively, the infusion of the harmonious interplay of geometric shapes like Piet Mondrian&#8217;s works into normal images. You can do all these using this AI module. You can customize the Brush Size and Style Weight to fine-tune the output image. Also, if you don&#8217;t have any reference abstract artwork, you can hit the Random button to get unlimited reference style suggestions. Vincent AI This specialized AI model is dedicated to replicating the iconic style of the Dutch post-impressionist master, Van Gogh. Vincent AI analyzes your photo, capturing its colors, brushstrokes, and swirling textures. It then reinterprets your image in Van Gogh&#8217;s signature style, complete with his bold outlines, vibrant palette, and impasto technique. If you&#8217;re looking for thick strokes of paint to add a layer of texture and dimension to the artwork, you must try out this AI image manipulator model. To make the output better, you can customize the image sharpness and intensity of the reference art style by controlling the Brush Size and Style Weight values. Artistic AI I&#8217;ve found this generative AI model particularly useful in transforming basic portraits and panoramic images with the following artwork styles: A touch of impressionism with soft brushstrokes. A pop art makeover with bold outlines and vibrant colors. Photorealistic sketches . Besides Brush Size and Style Weight customizations, Artistic AI also lets you choose the number of iterations. For this purpose, you can manipulate the value of the Optimization Iterations slider. The more the value the better the output image. However, you&#8217;ll increase the time taken to process an image heavily. Image Colorizing With AI The Colorize Picture tool is an AI model that enhances the color of a greyscale or old picture to its original hues. The feature works in just one click. You upload a black-and-white image into the canvas. Then, activate the Colorize Picture functionality from the menu bar &gt; AI Tools &gt; Colorize Picture option. This is a premium functionality and isn&#8217;t included in the free version of Deep Art Effects. Chunk Size You can often see repeated use of reference artwork styles in images by other conventional AI image processing apps, like Fotor. The output is not so interesting because the generative AI has applied the style in motifs. It feels like someone has used the Clone Stamp tool of Adobe Photoshop . You can avoid such low-quality output in Deep Art Effects by using the Chunk Size feature. This is an advanced generative AI manipulation tool. You&#8217;ll need to gain more experience with the app to use this feature effectively. However, the following examples will give you a clear idea about its utility. When you select a Chunk Size value of 512 , the AI model applies the reference artwork styles in blocks of 512 pixels. The white grids in the following screenshot represent 512-pixel chunks on an image: In the Deep Art Effects tool, you can choose a Chunk Size value from the following options: 128 256 512 1,024 2,048 You can customize the Chunk Size value from File &gt; Preferences &gt; Chunk Size slider. With enough tool usage experience, you&#8217;ll learn when to use a large or small Chunk Size . For example, I need to apply the mosaic art style in the target picture as shown in the screenshot below: In this case, I&#8217;ll use a lower Chunk Size value, like 128, to get a better resolution of the transferred style. Here&#8217;s a comparison of Chunk Size 128 and 512 applied on the same image: However, if your target image contains fewer geometric elements and the components of the image are spread across the canvas, you need to choose a large Chunk Size value, like 1,024. Look at the comparison below: Selective Rendering of Character and Background Its deep learning generative AI model can easily distinguish various objects in an image . For example, it can separate the character from the background in a portrait. In pictures, where your character is easily distinguishable from the ambient elements, you can use the selective AI style transfer feature. The functionality is pretty straightforward. You need to choose any from the following pairs: The character and the background The character stays untouched but the background is edited The background stays untouched but the character is transformed Once you render an image by selecting either the second or the third combination, you can switch to the other two by simply clicking the relevant buttons. This feature is highly effective in blending original images with artistic styles . For example, you can transform your character in the image into a sketch but remove the background or keep it unaffected. Find below a transformed image showing the original background. However, the character in the foreground has been rendered with the abstract art style. Deep Art Mobile App There are dedicated mobile apps for iOS and Android devices. You can download the relevant edition from the App Store or Google Store . You&#8217;ll find all the artistic filters in the mobile app as you would in the desktop version. However, the four different generative AI models are unavailable . There&#8217;s a common deep-learning AI model that lets you upload a custom artwork or choose one from the built-in template library. Unlike the desktop app, which only lets you download a copy of the image, the mobile version can export the output file in various ways. You can save a copy as a JPEG file in the internal storage of your iPhone or Android smartphone. Alternatively, you can share images online via Messenger, WhatsApp, iMessage, email clients, and so on. You can also apply effects to photographs taken from your smartphone camera or gallery. Moreover, the mobile app also includes the basic image editing and color correction tools as outlined below: The three lines menu on the lower right corner of the screen: Intensity Sharpen Contrast Brightness Saturation Hue The crop icon near the cogwheel button in the top right corner: Image rotation clockwise Image rotation anti-clockwise Image cropping AI Style Transfer API Deep Art Effects also offers API access to its image manipulation API server. You can integrate all the features you see in the desktop app into your website, eCommerce store, mobile app, etc. The API feature supports SDKs for Android, iOS, PHP, .NET, Java, and JavaScript . One popular use of real-time AI image manipulation is to create artistic images from basic pictures in iPhone cases, t-shirts , mugs, and various other products . The API service offers the following benefits: Free test plan to check out the API&#8217;s capabilities. A developer portal. Detailed technical documentation. Pre-configured and coded API commands. Device Compatibility Since this is a standalone AI image processing tool that works without the internet, the requirements to run it are a bit higher than for web apps. Find below a simplified table that explains the requirements and device specifications: Operating Systems &amp; Device Types Minimum System Requirements Windows PCs and laptops Windows 7 and newer OS 64-bit CPU architecture 2 GB HDD or SSD space (SSD preferred) 4 GB free memory or RAM Mac laptops and desktops Mac Sierra ( macOSX 10.12 ) and later OSs Mac running on Intel or Apple ( M1 &amp; M2 ) chips 2 GB internal storage 4 GB memory Linux Ubuntu 18.04 or newer systems 64-bit CPU architecture 2 GB internal storage 4 GB memory Smartphones and tablets iPhones, iPads, and iPod Touch running on iOS 13.0 and newer Android 4.1 or better devices Data Privacy and Security Deep Art Effects only collects the following data and transmits it with encryption to its payment processing partners Paypal and Stripe: Name Billing address Email address Credit or debit card information (encrypted) The data collected is the same as the checkout process on Amazon or Walmart. Also, all the content you create by using its freeware or paid edition is yours . You own the complete intellectual property rights of the output images and videos. Furthermore, you can use your artworks for both personal and commercial purposes . After installing and using the software for a week or more, I didn&#8217;t face any of the following issues: Targeted online ad s following me across websites, mobile apps, etc. Unknown third-party web browsers taking over hyperlinks that are supposed to open in Google Chrome or Microsoft Edge. Suspicious batch scripts running on my PC. Silent installation of bloatware. Injecting spyware, malware, ransomware, etc., into my PC. By using the app, you automatically consent to the following usage restrictions: You won&#8217;t use the tool to humiliate or cause harm to a third-party individual. You&#8217;ll only use free, unlicensed, and personal images and videos for AI-based manipulation purposes. The app developers may restrict you from accessing the tool in case of a severe breach of terms and conditions. Customer Support You can get technical and billing-related support using the support chat section on the Deep Art Effects website. This is an AI chatbot . It responds to easier issues that are already resolved and organized in a knowledge base. If you ask it any complicated question, it&#8217;ll route you to the email support team . Upon submitting a ticket through the AI chatbot, the Deep Art Effects team promptly dispatches a confirmation email to acknowledge receipt of your inquiry. I received a reply from an expert within 17 hours . There&#8217;s also a thriving and popular community forum. You can access the forum portal and create an account. Then, you&#8217;ll be able to start posting issues you face when using the tool. A forum moderator or community member might respond to your question whenever possible. How to Use Deep Art Effects Here are the simple and quick steps you can follow to get started with Deep Art Effects without any previous experience: Using the Art Style AI Tool Drag and drop the input image into the canvas. Art Style AI should be selected by default. If not, click on the icon as highlighted in the screenshot. The AI image processing module is just above the picture you&#8217;ve imported. At the bottom of the canvas, you should see a slider with thumbnail views of endless artistic style filters . Don&#8217;t click on any thumbnails yet. If you do, the tool will apply the art style immediately. You might want to click on the tiny (i) icon at the top right corner of the thumbnail to see the details of the filter template . Scroll through the template list to find the art style you want to apply. Once satisfied with a filter, click on that. Deep Art Effects will download the art style if it hasn&#8217;t been used previously. Then, it&#8217;ll modify the input image according to the reference art style you selected earlier. Click the File menu in the top left corner and choose Save from the context menu to get a copy of the artwork you&#8217;ve created. Using the Abstract AI Tool Import the target photograph you want to manipulate using AI into the Deep Art Effects canvas. Click on the Abstract AI module on top of the image. Click the Add New button at the bottom left corner of the tool to import the reference artwork. It&#8217;ll apply the artistic style of the reference image to the target photograph. In the top right corner of the app, you&#8217;ll see Brush Size and Style Weight . Increase the Brush Size value to make the output image softer . Contrarily, decrease the Brush Size value to make the output image sharper . Manipulate the Style Weight value to control how intensely you want to apply the artistic style from the input to the target picture. You&#8217;ll need to do some trial and error attempts to find the right Style Weight value. Let&#8217;s go ahead with a 75% Style Weight . Now, click on the input artwork reference shown in the filter section at the bottom of the canvas. The AI image generator app will apply the artistic style to the target photograph in a few seconds. Save the image from the File menu at the top left corner and select the Save option. Using the Vincent AI Tool Drag and drop the target image of any structure, like a house wall, into the canvas. Choose the Vincent AI from the top. Adjust the Brush Size and Style Weight according to your requirements. Choose a lower Brush Size to get the best resolution of the geometric components of the target image. Click the Add New button at the bottom to import the reference image from which you want to transfer style. When ready to transfer style with AI, click on the imported reference. Vincent AI will perform 100 iterations to get the perfect output image. So, it might take a while. Here&#8217;s the reference image from which I&#8217;ve transferred the style: Find below the output image after AI processing: Using the Artistic AI Tool Import the target image to the Deep Art Effects canvas. Click on the Artistic AI module. Adjust the Brush Size and Style Weight as per your preferences. Increase the Optimization Iterations value to get the best output image. Click the Add New button to import the reference artwork or artistic style template. Once the template has been uploaded, click on it to start the style transfer process . The Artistic AI tool will perform the required instances of iterations to perfect the output image. Suppose, you&#8217;ve chosen 52 iterations , the rendering could take about 1 hour . Using the Input Image Editing Tools You can customize the input image in various ways in the Art Style AI mode : By clicking the Level of detail drop-down arrow, you can choose from options like Thumbnail , Low , High , Very High , Ultra High , and Maximum . Accordingly, the app will change the visual appearance and size of the input image. There are two image rotation icons just above the Level of detail button. If you click the anticlockwise arrow , the tool will rotate the image accordingly. When you click on the clockwise arrow , the picture is rotated on the right-hand side. Click on the Cut Image button below the image rotating tool to crop a part of the image. The input photograph will open on a new interface. Now, you can use your mouse cursor to draw a rectangle on the image and click the Cut button to crop. On the left side navigation panel, you get quick image retouching tools as outlined below: Contrast: Increase or decrease the difference between light and dark areas of the picture. Brightness: Use it to adjust the overall lightness or darkness of an image, ultimately affecting its overall exposure. Saturation: You might use it to intensify or desaturate colors in an image, making it more vibrant or muted. Hue: Alters the overall color tone of an image, shifting it along the color spectrum. Blur: You can increase the slider value to make the image more soft and add a sense of depth. Sharpen: This tool will enhance the clarity and definition of a photo &#8216;s edges and details. Contours: You can add definition and depth by emphasizing the outlines or borders of objects using the Contours slider. Bokeh: It creates a soft and aesthetically pleasing blur in the out-of-focus areas of an image. Below the image quality and color correction tools in the left-side navigation panel, you&#8217;ll find three additional image manipulation tools: Greyscale: Checkmark it to convert a color photograph to a black-and-white version. Original Colors: Apply the filter by checking the box to explore the original picture colors. Mirror: By ticking this checkbox you can flip the image as it happens in a mirror reflection. Click the Reset button at the bottom of the left-side panel to undo all the changes made using the options from Intensity to Mirror . Deep Art Effects Pricing Find below a simplified explanation of all the subscriptions Deep Art Effects offers: Subscription Type Cost 1-Month $9.90 3-Month $8.33/month, paid $25 at subscription 1-Year $6.66 /month, paid $80 at subscription One-time $129 upfront for lifetime access All subscriptions include the following perks: All features Watermark-free downloads Updated art filters and styles Free customer support Regular software updates If you choose to go for the mobile app , the pricing is &#8211; $2.99/mo for one month, $34.99/yr for a full year, or $41.99 for a one-time purchase. Your purchase is nonrefundable under most circumstances . Since you can download a freeware version and use it to experience the tool, do that before buying. Use the tool extensively from all perspectives before buying so you don&#8217;t need to waste time contacting support. Deep Art Effects Review &#8211; Verdict If you&#8217;re looking for a premium, easy-to-use, and no-prompt option to integrate AI into artwork creation and transformation, Deep Art Effects is a great option. It also offers affordable subscription options. However, the mobile edition isn&#8217;t as cost-effective since it lacks many of the desktop app&#8217;s features, and it&#8217;s paid separately. Additionally, you might have a hard time if you&#8217;re a complete beginner. You won&#8217;t find the necessary tool descriptions, instructions, or undo buttons that make the experience easy. Did you give the tool a try after reading this in-depth Deep Art Effects review? Share your experience in the comments! Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://newrelic.com/termsandconditions/hipaabaafaq
HIPAA BAA FAQ Skip to main content HIPAA &amp; BAA FAQ New Relic Telemetry Data Platform, Full-stack Observability, and Applied Intelligence solutions Thank you for considering becoming a customer of New Relic. New Relic’s offerings are different from other SaaS offerings you may have encountered before. To avoid any misunderstandings about how New Relic fits into your technology estate, this FAQ is intended to paint a clearer picture of what we do, how we do it, why we do it, and where PHI may end up with New Relic. What does New Relic do? New Relic provides software developers and teams that run the software the tools needed to identify issues with that software. New Relic does not provide IT solutions for health care treatment or payment, nor many of the operations. Our technology performance-monitoring solutions are intended for use cases with non-sensitive timing and metric data, which you control by your deployment and configuration choices. We provide SRE and DevOps teams that develop, maintain, or update your software and technology solutions control over the data elements sent to New Relic. Health IT Examples Does New Relic do this or provide this? Primary Care Clinical decision support ❌ Computerized disease registries ❌ Computerized provider order entry ❌ Consumer health IT applications ❌ Electronic medical record systems ❌ Electronic prescribing ❌ Telehealth ❌ Revenue Cycle Charge capture ❌ Coding ❌ Claims submission ❌ Insurer communications ❌ Payment collections ❌ Medical service review ❌ Payment Billing ❌ Risk adjustment ❌ Reviewing for medical necessity, coverage, justification of charges and the like ❌ Utilization review activities ❌ Disclosure to consumer reporting agencies ❌ Health care operations Conducting quality assessment and improvement activities, population-based activities relating to improving health or reducing health care costs, and case management and care coordination; ❌ Reviewing the competence or qualifications of health care professionals, evaluating provider and health plan performance, training health care and non-health care professionals, accreditation, certification, licensing, or credentialing activities; ❌ Underwriting and other activities relating to the creation, renewal, or replacement of a contract of health insurance or health benefits, and ceding, securing, or placing a contract for reinsurance of risk relating to health care claims ❌ Conducting or arranging for medical review, legal, and auditing services, including fraud and abuse detection and compliance programs;&nbsp; ❌ Business planning and development, such as conducting cost-management and planning analyses related to managing and operating the entity; and&nbsp; ❌ Business management and general administrative activities related to implementing and complying with the Privacy Rule and other Administrative Simplification Rules, resolution of internal grievances, sale or transfer of assets, creating de-identified health information or a limited data set, and fundraising for the benefit of the covered entity. ❌ &nbsp; Does New Relic directly interact with patients on a covered entity’s behalf? No. New Relic’s users are generally developers, IT operations, and site reliability engineers. In general, New Relic’s subscriptions prohibit sublicensing access and use of New Relic’s SaaS to your own customers. How does New Relic provide its solutions? New Relic provides a database, which we call the Telemetry Data Platform , that stores telemetry data about software performance. New Relic provides a graphical user interface via our website that allows users to quickly understand the health of frontend software and backend software, which we call the Full-Stack Observability . New Relic provides AI-powered solutions, which we call Applied Intelligence , that run on the telemetry data and can help automate identifying the root cause of a problem with software. Why does New Relic provide its solutions? Software code is bigger and more distributed than ever before. New Relic’s solutions can help your teams answer software problems and questions like: Where in my distributed technology estate is the slowdown occurring ? What is the root cause of my slow website ? What patient treatment or payment services do New Relic provide covered entities? None. New Relic’s solutions help software developers identify issues with software. Can I see what’s in the data sent from my systems to New Relic? New Relic’s data dictionary defines many of the common data attributes processed by New Relic.&nbsp; New Relic users can view data using New Relic’s data explorer to view the telemetry data elements (including in JSON format) in the New Relic account. Your teams, solely within their election, may configure your licensed software to send custom telemetry data. That is wholly within your teams’ control and purview. You can view these customized data in data explorer as well if you would like to view the data elements for such custom telemetry data. Logs data is generally unstructured, raw “reports” generated by your software. Like other telemetry data available to users, if you have a New Relic account, you can view these Logs in New Relic’s data explorer and the Logs UI in New Relic One. What kind of health information technology does New Relic provide to covered entities? None. New Relic: Does not provide an electronic medical record or a personal health record;&nbsp; Is not an electronic data interchange; and Is not a health information exchange or health information organization Depending on the technologies that your teams may use, New Relic can help your teams that build, operate, and maintain your health information technology identify issues with such software. Why does New Relic sign a BAA then? Where will PHI likely end up? If you use New Relic Browser in your patient-facing website, IP addresses are used to derive regional location information, and then the IP address is subsequently overwritten. Please see additional information provided here . If you use New Relic Mobile in your patient-facing mobile application, IP addresses are used to derive regional location information and subsequently discarded. Please see additional information provided here . If:&nbsp; Your applications or your infrastructure (servers, hypervisor, etc) process PHI Your applications or your infrastructure generate Logs that may include personal information relating to a patient You configure your applications or your infrastructure to send those Logs to New Relic Then PHI may end up in the Logs that New Relic receives from your software and on your behalf. “The HIPAA Rules generally require that covered entities and business associates enter into contracts with their business associates to ensure that the business associates will appropriately safeguard protected health information” (published by HHS). If you are a covered entity and will have PHI in the data that you send to us, you need a business associate agreement with New Relic. Do all covered entities have to sign a business associate agreement with New Relic? According to HHS : A “business associate” is a person or entity that performs certain functions or activities that involve the use or disclosure of protected health information on behalf of, or provides services to, a covered entity.&nbsp; Not all covered entities sign a business associate agreement with New Relic because some covered entities do not send protected health information to New Relic. Covered entities can (i) limit the scope of systems performance monitoring and (ii) control the telemetry data sent from their software and IT systems so that it excludes any PHI. How can I help reduce or limit any PHI in the telemetry data that I send to New Relic? Some options for your consideration: Carefully choose which applications and infrastructures you want to instrument and measure performance. Some or many of your systems may never process any PHI and therefore monitoring those systems will unlikely contain any PHI. Reduce or limit the use of any custom events so they do not contain any PHI elements. Talk to your legal, privacy, or compliance officers if you need assistance determining whether your data attributes or your proposed JSON schema will contain any PHI elements. Reduce or limit the use of dimensional metrics that may include any personal identifiers about patients. Review Service Maps in New Relic One to determine whether there are upstream connections to any patient-facing services or connections to systems that may contain PHI. Use New Relic’s data explorer to review every type of data at a regular cadence to see if there are any PHI elements. Add your legal, privacy, or compliance officers as a New Relic user so they can use New Relic’s data explorer to review for themselves. There’s a separate subsection in New Relic’s data explorer for “Custom Events” If you are implementing rules on your systems to remove identifiers in any telemetry data before sending it to New Relic, then consult with your legal, privacy, or compliance officers by sharing the JSON or raw file types (under New Relic’s data explorer ) to confirm the telemetry data has been appropriately de-identified in accordance with HIPAA . Invite your legal, privacy, or compliance officer to review any one of your data in New Relic’s data explorer Use New Relic Log drop filter rules to drop Logs data that meet your specified criteria. If you find PHI that you prefer to keep out, then reconfigure your data source to omit the specified data attribute, and then subsequently, request data deletion in accordance with New Relic’s personal data deletion request . How do I identify the individuals included in my telemetry data whose data may also be subject to state privacy laws? New Relic’s services by default do not specifically collect names, addresses, dates of birth, or the like, and therefore, New Relic will not have names with state of residency. Depending on the developers that created your software or IT systems, the developers may have opted to include data elements that could include personal information in the Logs data generated from such software or IT systems. Consulate your developers or your software and systems documentation for more information. I am the covered entity and it is my obligation under HIPAA to ensure all business associates sign a business associate agreement with me. Why can my company not use its own BAA? While it may be the covered entity’s obligation, nothing in HIPAA requires that the business associate start with the covered entity’s business associate agreement. New Relic’s business associate agreement is specifically tailored to reflect New Relic’s service offering and its multi-tenant environment. It sets out the specialized processes and procedures in relation to New Relic’s obligations as a business associate to the covered entity that do not provide full records about patients or individuals. These all correlate to the way in which New Relic’s unique services and its multi-tenant infrastructure operate. For example, stock business associate agreements are drafted for any type of vendor that use and disclose large quantities of PHI like medical claims, pharmacy claims, ERAs, health charts, billing &amp; coding, and medical images and will contain requirements for handling these types of PHI directly as if the covered entity itself. New Relic will not handle such types of PHI and does not have mechanisms in place to handle specific requests by the Covered Entity pertaining to such types of PHI.&nbsp; New Relic’s platform was designed to ingest telemetry data and query telemetry data. Any PHI elements will be temporary or ancillary (ee question above) Customers are fully in control of the data sent to New Relic; New Relic will not by default collect information about a patient to confirm the identity of the individual (e.g. first name, last name, home address, group plan ID, member ID, etc.). Because of the foregoing, New Relic will not be able to identify the Individuals impacted in a data incident. New Relic will not be directly interfacing with patients. New Relic was not designed to operate as a system of record for patient care or payments and cannot amend PHI. New Relic can provide a special environment for health care customers, which require coordination between customer and New Relic as specified in New Relic’s BAA. New Relic’s business associate agreement is bespoke to New Relic’s telemetry data platform architecture built on our cloud vendors. New Relic inherits all the features and functionalities as provided by cloud vendors supporting our platform. What about the main agreement between the parties? The New Relic BAA is an addendum to the main agreement between New Relic and our customer and forms part of that agreement. Why are some features, such as Applied Intelligence and others that use AI/ML, not included as a HIPAA Covered Service? New Relic releases new products and features on an ongoing basis. In addition to following a standards-based risk management program for our services, New Relic works with third-party auditors that separately review and verify New Relic is meeting requirements under a recognized privacy and security framework such as SOC. New Relic prioritizes and adds new eligible services based on customer demand. For more information about our business associate program, or to request new HIPAA Covered Services, please speak with your New Relic representative. New Relic realizes the value our services and features provide to all customers; if you are a health care customer, we would love to hear from you. I am responsible for ensuring that only authorized Users can access my HIPAA Account that may contain PHI. How do I add, remove, or manage users in my HIPAA Account? New Relic’s Documentation provides detailed information on how to manage users for a New Relic Account, including a HIPAA Account. Please see here . How does New Relic meet its obligations under HIPAA? Not only are we committed to you as our customer, HHS/OCR can directly oversee business associates like New Relic. New Relic has both a dedicated security and privacy team within our organization who are passionate about delivering and maintaining privacy and security for our HIPAA covered offerings. We will keep your data confidential : All of New Relic’s staff who have access to our customer’s data are committed to confidentiality as part of their terms of employment with New Relic. We keep your data safe and secure : At New Relic, the security of your data is of the utmost importance to us. We engineered our HIPAA offering using the same privacy and security framework we used for FedRAMP. We have implemented robust technical and organisational measures to assist our customers in meeting their compliance needs : At New Relic we know that our customers are subject to compliance obligations under HIPAA. Your users have query and retrieval capabilities in our services to look for your specified data attributes. We will only use approved business associates : All of our own business associates undergo rigorous security and privacy assessment from our security and privacy team. You can be assured that we conduct thorough due diligence prior to onboarding and that we ensure we have the appropriate contractual provisions in place.&nbsp; At all times New Relic remains liable for the acts of our business associates. We will assist you in the event of a data breach : If a data breach occurs at New Relic and your data is affected, we will notify you and we will provide you with details of the breach in order for you to assess the impact it may have upon your organisation.&nbsp; We use an independent auditor and nationally-recognized audit framework : We picked a nationally-recognized and respected audit framework so that you and New Relic are aligned on our privacy and security measures. How can I sign the New Relic BAA? Contact your Account Executive for more information. I would like to ask some questions that are not answered in this FAQs For any additional information you require, you may contact your Account Executive who will be happy to assist you. &nbsp; This information contained in this document does not provide legal advice.&nbsp; We recommend that you consult with your own legal counsel in order to obtain advice specific to your own unique situation and how you intend to use the New Relic services- remember a BAA with New Relic is only necessary if you fall under the conditions set forth in HIPAA. &nbsp; New Relic Now Discover the latest features and capabilities shaping observability and driving growth. Watch On Demand Search toggle Main navigation menu, 6 items Search Submit Platform Intelligent Observability Platform View Platform APM APM 360 Business Observability eAPM SAP Monitoring Serverless Transaction 360 Security Interactive Application Security Testing (IAST) Security RX FinOps Cloud Cost Intelligence Digital Experience Monitoring Browser Real User Monitoring Mobile Real User Monitoring Session Replay Streaming Video and Ads Intelligence Synthetics Web Performance Monitoring Intelligence Agentic Integrations AIOps AI Monitoring Intelligence Engine New Relic AI Infrastructure AWS Cloud Monitoring Azure Cloud Monitoring Database Performance Monitoring Google Cloud Monitoring Infrastructure Monitoring Kubernetes Monitoring Network Monitoring Prometheus Monitoring Logs Log Management Developer Productivity CodeStream Service Architecture Intelligence Platform Capabilities Alerts Change Tracking Dashboards Entity Explorer Errors Inbox Fleet Control Integrations OpenTelemetry Pipeline Control Queues and Streams Pricing Simple, transparent pricing. Usage-based pricing for full-stack observability -- all in one platform. View Pricing Free Sign up for free access with our perpetual free tier and 100GB/mo of data ingest included. 100 GB data ingest Automatic logs obfuscation Unlimited basic and core users One free full platform user Access to 30+ capabilities Data retention Start for Free Standard For small teams looking to get started with observability. Limited to 5 full platform users Ticketed support availability 2 business days support response SLA SAML single sign-on Get Standard Pricing Pro For teams with more than five engineers and complex workloads. No maximum on full platform users you can provision Commitment options 2-hour critical initial support response SLA Data Plus eligibility Get Pro Pricing Enterprise For at-scale organizations with advanced security and support needs. Everything in Pro plus: FedRAMP Moderate and HIPAA eligibility with Data Plus Priority ticket routing 1-hour critical initial support response SLA Get Custom Pricing Solutions The world's leading companies run on New Relic. Customer Stories Use Cases Digital Experience Monitoring Go from reactive to responsive DevOps Tool Consolidation Open Source Industries Retail &amp; Ecommerce Healthcare Media &amp; Entertainment New Relic for Startups Nonprofit Public Sector Technologies Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Prometheus Monitoring SAP Monitoring ServiceNow New Relic Now Watch on demand and discover the latest features and capabilities shaping observability. Gartner® Magic Quadrant™ New Relic named a 2x Leader by Gartner in DEM. 2025 Gartner® Magic Quadrant™ New Relic named a Leader in Observability for the 13th time. Read more. 1 2 3 Enterprise Developers Developers Simple K8 Monitoring Simplify your Kubernetes monitoring with the New Relic operator. Monitor Mobile Apps Monitor hybrid mobile apps in minutes with quickstart installations. New Relic Browser Agent Custom instrumentation with the New Relic browser agent. 1 2 3 Popular Docs Start ingesting data Create custom dashboards Examine NRQL queries Forward logs using infrastructure agent View All Docs 780+ Integrations Start now for free. Python Install Java Install PHP Install Ruby Install View All Integrations New Relic Now Watch on demand and discover the latest features and capabilities shaping observability. Gartner® Magic Quadrant™ New Relic named a 2x Leader by Gartner in DEM. 2025 Gartner® Magic Quadrant™ New Relic named a Leader in Observability for the 13th time. Read more. 1 2 3 Resources About Us Leadership Careers Secure Developer New Relic for Students Newsroom ESG Professional Services Community Forum Technical Support Customer Stories Videos and case studies show how companies win with observability. Resource Library Ebooks, data sheets, and white papers. New Relic Blog Industry updates, tips, and best practices. Events &amp; Webinars Join us for an upcoming event or training. New Relic University Learning paths and training courses. Observability Value Calculator Learn the value of New Relic to your business. New Relic Now Watch on demand and discover the latest features and capabilities shaping observability. 2025 Gartner® Magic Quadrant™ New Relic named a Leader in Observability for the 13th time. Read more. Gartner® Magic Quadrant™ New Relic named a 2x Leader by Gartner in DEM. 1 2 3 Search toggle Log in Log in Get Started Free Get Demo Log in Log in Get Started Free Get Demo COMPANY COMPANY About Us Careers Leadership Social Impact Code of Conduct ESG Suppliers Portal AI Principles PRODUCT PRODUCT Integrations Platform Security VALUE VALUE Pricing New Relic Free Tier New Relic vs Datadog New Relic vs Dynatrace New Relic vs Splunk RESOURCES RESOURCES Blog Customer Case Studies Community Forum Documentation Press Releases New Relic University Partner Program 2025 Observability Forecast Professional Services FAQS FAQS What is Infrastructure Monitoring? What is Observability? What is Kubernetes? Six steps for achieving business observability Log management best practices Why you need a single tool for infrastructure monitoring and APM A quick guide to getting started with New Relic Why you need IAST Contact Us Terms of Service DMCA Policy Privacy Policy Website Terms Your Privacy Choices Cookie Policy Modern Slavery Statement Patent Notice English English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. All rights reserved
2026-01-13T09:30:15
https://newrelic.com/fr/platform/fleet-control
Contrôle de la flotte | New Relic Passer au contenu principal New Relic Fleet Control Gérez le cycle de vie de toutes vos intégrations et de tous vos agents en un seul et même endroit, tout en minimisant le temps nécessaire pour l'instrumentation de l'observabilité. Démarrer gratuitement Obtenir une démo QU&#039;EST-CE QUE LE CONTRÔLE DE LA FLOTTE? Simplifiez la gestion du cycle de vie des agents, à toute échelle Image Un seul plan de contrôle pour tous les agents Installez, monitorez, configurez et mettez à jour tous les agents et les intégrations en un seul et même endroit. Image Aucun angle mort avec la télémétrie Contrôlez toutes les sources de télémétrie, y compris OTel, avec Agent Control. Image Mettez les flottes à jour en un clic Groupez les agents en fonction des besoins d'instrumentation et gérez‑les en masse. Image Automatisez à l&#039;échelle Rationalisez les opérations de la flotte avec l'API pour une instrumentation en tant que code. CONTRÔLE UNIFORMISÉ DE LA FLOTTE Centralisez les opérations d&#039;agents et réduisez la charge de travail manuel Faites facilement le suivi de l'intégrité de tous les agents sur tout votre domaine afin d'assurer la couverture continue de l'observabilité. Centralisez la configuration et contrôlez les flottes des agents grâce à la gestion à distance du cycle de vie. Améliorez la sécurité et affinez les permissions de gestion de la flotte avec un accès granulaire basé sur les rôles. &nbsp; CONTRÔLE UNIVERSEL DES AGENTS Supprimez les angles morts de l&#039;observabilité Gérez les agents sur les clusters Kubernetes avec un superviseur léger qui se met à l'échelle sur tout votre environnement. Faites l'intégration avec diverses sources de télémétrie, y compris OTel. Configurez à distance et mettez à jour tous les agents et la télémétrie pris en charge. AUTOMATISATION DE LA CONFIGURATION Automatisation et évolution aisées de la configuration Mettez à jour les versions des agents en masse pour toutes les flottes en quelques clics, sans qu'aucun script soit nécessaire. Obtenez des configurations cohérentes sur tous les environnements. Utilisez les API pour des outils comme Ansible, Chef, Puppet et Terraform pour développer des automatisations plus puissantes. Apprenez-en plus sur l&#039;obtention du contrôle intégral de votre instrumentation. Consultez ces ressources&nbsp;! Démarrez avec New Relic Control Documentation New Relic Now+ 2025 : Guide sur les innovations New Relic pour l&#039;excellence de l&#039;ingénierie Article de blog Domptez la complexité et le volume de télémétrie avec le contrôle de pipeline Capacité Lancez-vous gratuitement dès aujourd'hui Démarrer gratuitement Obtenir une démo Search toggle Main navigation menu, 6 items Rechercher Submit Plateforme Plateforme d’observabilité intelligente Découvrir la plateforme APM APM 360 Observabilité d&#039;entreprise eAPM Monitoring SAP Serverless Transaction 360 Sécurité Test interactif de sécurité des applications (IAST) Security RX FinOps Intelligence Coûts du cloud Monitoring de l&#039;expérience numérique Monitoring des utilisateurs réels pour navigateurs Monitoring des utilisateurs réels pour mobile Session Replay Intelligence Streaming vidéo et publicitaire Synthetics Monitoring de performance web Intelligence Intégrations agentiques AIOps Monitoring de l&#039;IA Moteur Intelligence New Relic AI Infrastructure Monitoring AWS Cloud Monitoring Azure Cloud Monitoring des performances de bases de données Monitoring Google Cloud Monitoring d&#039;infrastructure Monitoring de Kubernetes Monitoring réseau Monitoring Prometheus Logs Gestion des logs Productivité des développeurs CodeStream Intelligence Architecture de services Capacités de la plateforme Alertes Suivi des changements Dashboards Entity Explorer Errors Inbox Contrôle de la flotte Intégrations OpenTelemetry Contrôle de pipeline Files d&#039;attente et flux de données Tarification Tarification à l&#039;utilisation Tarification basée sur l&#039;utilisation pour l&#039;observabilité full-stack — plateforme tout-en-un. Voir la tarification Gratuit Inscrivez-vous pour bénéficier d'une licence Free Tier gratuite à vie et 100&nbsp;Go/mois d'ingestion de données. 100&nbsp;Go d'ingestion de données Obfuscation automatique des logs Utilisateurs Core et Basic illimités 1 utilisateur Full Platform gratuit Plus de 30 capacités Rétention des données Démarrer gratuitement Standard Pour les petites équipes souhaitant commencer à utiliser l'observabilité. Limité à 5 utilisateurs Full Platform Assistance par tickets offerte SLA de réponse d'assistance de 2 jours ouvrables Authentification unique SAML Tarification Standard Pro Pour les équipes comptant plus de cinq ingénieurs et ayant des workloads complexes. Aucune limite au nombre d'utilisateurs Full Platform provisionnés Plusieurs options d'engagement SLA de réponse d'assistance initiale critique de 2&nbsp;heures Éligibilité à Data&nbsp;Plus Tarification Pro Enterprise Pour les organisations à l'échelle qui souhaitent une sécurité et une assistance avancées. Tout Pro avec en plus&nbsp;: Éligibilité à FedRAMP Moderate et HIPAA avec Data&nbsp;Plus Acheminement prioritaire des tickets SLA de réponse d'assistance initiale critique de 1&nbsp;heure Tarification personnalisée Solutions Les meilleures marques du monde choisissent New&nbsp;Relic Témoignages de nos clients Études de cas Monitoring de l&#039;expérience numérique Passez de la réactivité à la proactivité DevOps Consolidation des outils Open source Secteurs Retail et e-commerce Santé Médias, spectacles, divertissements ou loisirs New Relic pour les startups Organisations à but non lucratif Secteur public Technologies Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Monitoring Prometheus Monitoring SAP ServiceNow New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Enterprise Développeurs Développeurs Monitoring simple de Kubernetes Simplifiez le monitoring Kubernetes avec l&#039;opérateur New Relic Monitoring des applications sur mobile Monitorez les applications mobiles en quelques minutes avec l&#039;installation de quickstarts. Agent New Relic Browser Instrumentation personnalisée avec l&#039;agent de navigateur New Relic. 1 2 3 Documentation populaire Démarrer l&#039;ingestion des données Créer des dashboards personnalisés Examiner des requêtes NRQL Transférer des logs avec un agent d&#039;infrastructure Voir toute la documentation Plus de 780 intégrations Démarrer gratuitement. Python Installation Java Installation PHP Installation Ruby Installation Voir toutes les intégrations New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Ressources Qui sommes-nous&nbsp;? Leadership Recrutement Développement sécurisé New&nbsp;Relic for Students Espace presse ESG Forum de la communauté Assistance technique Témoignages de nos clients Des vidéos et études de cas montrent les stratégies gagnantes des entreprises grâce à l&#039;observabilité. Bibliothèque de ressources E-books, fiches techniques et livres blancs. Blog New Relic Actualité, conseils et meilleures pratiques du secteur. Événements et webinaires Rejoignez-nous à un événement ou une formation. New Relic University Parcours d&#039;apprentissage et formations. Calculateur de la valeur de l&#039;observabilité Découvrez la valeur de New Relic pour votre entreprise. New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 1 2 3 Search toggle Se connecter Se connecter Démarrer gratuitement Obtenir une démo Se connecter Se connecter Démarrer gratuitement Obtenir une démo ENTREPRISE ENTREPRISE Qui sommes-nous ? Recrutement Leadership Impact social Code de conduite ESG Portail des fournisseurs Principes d&#039;IA PRODUIT PRODUIT Intégrations Plateforme Sécurité VALEUR VALEUR Tarification Free Tier New Relic Comparatif New Relic/Datadog Comparatif New Relic/Dynatrace Comparatif New Relic/Splunk RESSOURCES RESSOURCES Blog Études de cas clients Forum de la communauté Documentation Communiqués de presse New Relic University Programme de partenariat Prévisions 2025 sur l&#039;observabilité Professional Services FAQ FAQ Qu’est-ce que le monitoring d’infrastructure ? Qu&#039;est-ce que l&#039;observabilité ? Qu’est-ce que Kubernetes ? Six étapes pour obtenir l&#039;observabilité d&#039;entreprise Les meilleures pratiques de gestion des logs Un seul outil suffit pour le monitoring d&#039;infrastructure et l&#039;APM Guide rapide pour démarrer avec New Relic Raisons pour lesquelles vous avez besoin d&#039;IAST Contactez-nous Conditions de service Politique DMCA Politique de confidentialité Conditions du site web Vos choix de confidentialité Cookies Déclaration sur l&#039;esclavage moderne Avis sur les brevets Français English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. Tous droits réservés. Comment New Relic peut-il aider le monitoring de votre stack? Démarrez gratuitement avec 100 Go + 1 utilisateur. Démarrer Suivez notre visite guidée du produit. Obtenir une démo Tarification simple et transparente Service des ventes
2026-01-13T09:30:15
https://docs.newrelic.com/jp/attribute-dictionary/
New Relic data dictionary | New Relic Documentation Docs Community Learn Docs Community Learn / English Español Français 日本語 한국어 Português ログイン 今すぐ開始 ここから開始 New Relicを使い始める チュートリアルとウォークスルー ガイドとベストプラクティス データの監視 New Relic Control AIモニタリング アプリケーションパフォーマンス監視 ブラウザのモニタリング eBPF monitoring インフラストラクチャのモニタリング Kubernetes監視 ログ管理 モバイルのモニタリング モデルパフォーマンスモニタリング Queues and Streams ネットワーク監視 OpenTelemetry SAP Solutions サーバーレスのモニタリング Streaming Video &amp; Ads 合成のモニタリング ウェブサイトのパフォーマンスモニタリング データのインサイト New Relic AI アラート 変更追跡 チャート、ダッシュボード、クエリ Cloud Cost Intelligence CodeStream ディストリビューティッド(分散)トレーシング エラーインボックス NRQL Service Architecture Intelligence サービスレベル管理 Workflow Automation セキュリティ インタラクティブアプリケーション セキュリティテスト(IAST) Security RX(修復エクスプローラー) PRODUCT UPDATES リリースノート 新機能 販売終了のお知らせ 管理者とデータ アカウントおよびユーザーの管理 データとAPI データ辞書 セキュリティとプライバシー ライセンス New Relicデータ辞書 このデータディクショナリは、NRDBに格納され、NRQLでのクエリが可能な、デフォルトのレポートデータの一部を定義します。これには、Transaction、MobileRequest、BrowserInteraction、Metric、Log、Spanなどのイベントが含まれます。これらの定義は、該当するデータ型と属性名にマウスを合わせると、クエリビルダーUIからも利用できます。 このディクショナリには、以下は含まれていません。 インフラストラクチャインテグレーションからのデータ(特定のインテグレーションについては、ドキュメントを参照) カスタムデータ メトリクスデータの詳細なインテグレーション固有の属性 AjaxRequest Data source : Browser agent AjaxRequest events occur for any Ajax request, including during a BrowserInteraction event. The event attribute tracks geographic and browser info. Use browser app settings to block specific requests. Attribute name Definition Data types actionText The text of the HTML element that was clicked when a browser interaction started. Added to BrowserInteraction and any AjaxRequest , and JavaScriptError events that occurred during that interaction. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError appId ID The ID of your application, as recorded by New Relic. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming PageAction PageView PageViewTiming UserAction appName The name of the application that handled the request as shown in browser monitoring. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction asn Autonomous System Number: a unique number identifying a group of IP networks that serves the content to the end user. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming Span UserAction asnLatitude The latitude of the geographic center of the postal code where the Autonomous System Network is registered. This is not the end user&#39;s latitude. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction asnLongitude The longitude of the geographic center of the postal code where the Autonomous System Network is registered. This is not the end user&#39;s longitude. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction asnOrganization The organization that owns the Autonomous System Number. Often an ISP, sometimes a private company or institution. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction browserInteractionId ID A unique value generated for each browser interaction captured by the New Relic agent. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError browserInteractionName The name of the interaction. This is either the targetGroupedUrl or the custom name set via the API. AjaxRequest BrowserInteraction BrowserTiming city The city in which the event occurred, such as Portland or Seattle. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError Mobile MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction countryCode The country from which the browser initiated the page load. For a list of country codes, see ISO 3166-1 alpha-2. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction deviceType The type of device that loaded the page: mobile, tablet, or desktop. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError PageView UserAction eventId ID A value that you can link to multiple BrowserInteraction events so you can view the interactions that occurred surrounding a specific event. For example, you can see the browser interactions that occurred prior to a JavaScript error. AjaxRequest BrowserInteraction BrowserTiming groupedPageURL The grouped URL of the view that made the AJAX request. For example: myapp.com/acct/\*/dash . AjaxRequest BrowserTiming groupedRequestUrl The grouped URL of the AJAX request. For example: myapp.com/acct/\*/ajax . AjaxRequest Span hasReplay Indicates whether the event is associated with a session replay. If you already have custom dashboards, adding hasReplay = true to queries would allow you to search for a particular session of interest and watch the replay. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError PageView PageViewTiming UserAction hostname The fully qualified domain name (FQDN) of the request URL. AjaxRequest httpMethod enum The HTTP method of the AJAX request. Example: POST . AjaxRequest httpResponseCode enum The HTTP response code. Example: 200 . AjaxRequest jsDuration seconds (s) The total duration, in seconds, spent on JavaScript execution. This attribute is only seen in AjaxRequest data that is tied to BrowserInteraction . This attribute doesn&#39;t exist for initial page load events. Starting in agent version 1.298.0, or new soft navigation feature, this is the length of time from the end of the AjaxRequest to the end of its latest callback that resulted in a long task (execution time &gt;= 50ms). If there were no long tasks, this value is 0 ( callbackEnd == end ). AjaxRequest BrowserInteraction BrowserTiming pageUrl The URL of the page that was loaded for the PageView, for example: http://www.newrelic.com . This URL does not include query parameters. AjaxRequest BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming Span UserAction parentEventId ID A unique value generated for each interaction with the page. You can use this value to group interactions together. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError port enum The request port. AjaxRequest Span regionCode The specific administrative division within a country where the PageView event occurred. In the United States, regions correspond to state codes, such as WA or NY. Outside the United States, a country&#39;s regions correspond to numerical codes. In the United States, regions correspond to state codes ; for example, WA or NY . Outside the United States, a country&#39;s regions correspond to numerical codes . AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction requestBodySize bytes (B) The payload size of the request body, in bytes. AjaxRequest requestUrl The URL of the AJAX request. For example: myapp.com/acct/1/ajax . AjaxRequest responseBodySize bytes (B) The payload size of the response body, in bytes. AjaxRequest session A unique identifier for a single session. The session is tracked in browser storage using the Web Storage API , subject to each browser&#39;s implementation and handling. The session will automatically reset or refresh after a set period of inactivity or a pre-defined duration limit, whichever is less. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming Span UserAction sessionTraceId ID Allows for linking together end user actions from session traces and querying across browser events. Not all browser events will have this. For example, PageView events complete before the first session trace harvest. Also, initial page loads from BrowserInteraction won&#39;t always include this. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction timeSinceBrowserInteractionStart seconds (s) The time in seconds between the start of the BrowserInteraction and the start of the request. AjaxRequest BrowserTiming timestamp The time (date, hour, minute, second) at which the interaction occurred. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming PageAction PageView PageViewTiming Span UserAction timeToLastCallbackEnd seconds (s) The duration, in seconds, from the start of the request (timestamp) to the end of the last callback. This is not just an additive function; the callback time can overlap with the wait time. This attribute is only seen in AjaxRequest data that is tied to BrowserInteraction . Starting in agent version 1.298.0, or new soft navigation feature, this is the length of time from the start of the AjaxRequest to the end of its latest callback that resulted in a long task (execution time &gt;= 50ms). If there were no long tasks, this value is simply the duration of the request itself. This attribute becomes synonymous with timeToSettle . AjaxRequest BrowserTiming timeToLoadEventStart seconds (s) The time, in seconds, from the start of the AJAX request to the start of its load event. This value represents the duration of the AJAX request with single page app (SPA) monitoring. For more information, see the Mozilla developer documentation about XMLHttpRequest load events . AjaxRequest timeToSettle seconds (s) The time, in seconds, from the start of the request to when all resulting callbacks (including callbacks of subsequent AJAX requests) are complete. This attribute is only seen in AjaxRequest data that is tied to BrowserInteraction . Starting in agent version 1.298.0, or new soft navigation feature, this is the length of time from the start of the AjaxRequest to the end of its latest callback that resulted in a long task (execution time &gt;= 50ms). If there were no long tasks, this value is simply the duration of the request itself. This attribute becomes synonymous with timeToLastCallbackEnd . AjaxRequest BrowserTiming trace.id ID The unique ID (a randomly generated string) serves as a unique identifier to distinguish individual requests as they traverse both inter-process and intra-process boundaries. It facilitates the association of spans within a distributed trace and is included when distributed tracing is activated. AjaxRequest userAgentName The browser’s name, such as Chrome and Firefox, obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction userAgentOS The browser’s reported operating system, such as Windows or Linux, that it is running on. This is obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction userAgentVersion The browser’s reported software version, which is obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction AwsLambdaInvocation Data source : AWS Lambda This event is reported by New Relic monitoring for AWS Lambda. This event captures overall function timing and associated metadata. A single AwsLambdaInvocation event is generated for each invocation. Attribute name Definition Data types aws.lambda.arn The Amazon Resource Name (ARN) of the instrumented Lambda function. AwsLambdaInvocation AwsLambdaInvocationError aws.lambda.coldStart A boolean indicating if the AWS Lambda invocation is a cold start. AwsLambdaInvocation AwsLambdaInvocationError aws.lambda.eventSource.arn The Amazon Resource Name (ARN) of the entity that invoked the instrumented Lambda function. AwsLambdaInvocation AwsLambdaInvocationError aws.requestId ID AWS identifier of the invocation. AwsLambdaInvocation AwsLambdaInvocationError databaseCallCount count The number of database calls made by this transaction. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError databaseDuration seconds (s) The database response time in seconds. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError duration seconds (s) The total invocation time for the transaction, in seconds. (Data source: AWS Lambda) AwsLambdaInvocation AwsLambdaInvocationError externalCallCount count The number of external calls made by this transaction. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError externalDuration seconds (s) The total response time of all external (out-of-process) services, in seconds. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError newRelic.ingestPoint Where the data point entered the platform (such as browser.spans , or api.traces ). AwsLambdaInvocation AwsLambdaInvocationError Span parent.account ID If a distributed tracing payload is received, this is the account identifier for the transaction&#39;s upstream caller. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError parent.app ID If a distributed tracing payload is received, this is the application identifier. APM agents retrieve this value in the connect response under the key primary_application_id. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError parent.transportType When a distributed tracing payload is received, the method of transport for the payload. Example values: Unknown, HTTP, HTTPS, Kafka, JMS, IronMQ, AMQP, Queue, or Other. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError parent.type If a distributed trace payload was received, the parent&#39;s data source type. Example values: App, Browser, Mobile. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.accept The types as read from the HTTP Accept request header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.contentLength bytes (B) Incoming request size in bytes as read from the Content-Length HTTP request header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.contentType Incoming request content-type as read from the HTTP request header Content-Type . Example value: application/octet-stream . AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.host The name from the HTTP host request header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.referer The incoming request referer as read from the Referer request header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.userAgent The contents of the User-Agent HTTP header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.method The HTTP request method used. Example values: POST, GET. AwsLambdaInvocation AwsLambdaInvocationError Span Transaction TransactionError response.headers.contentLength bytes (B) The outgoing response size in bytes as read from the Content-Length response header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError response.headers.contentType For an HTTP response, the data type of the returned response. Example values: text/html, application/json. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError response.status bytes (B) The response code for an HTTP request AwsLambdaInvocation totalTime seconds (s) The sum of all async components&#39; duration, in seconds. An async component is a method or function where there is no instrumented encapsulating method or function. AwsLambdaInvocation Transaction traceId ID The unique ID (a randomly generated string) used to identify a single request as it crosses inter- and intra- process boundaries. This ID allows the linking of spans in a distributed trace. Included when distributed tracing is enabled. AwsLambdaInvocation AwsLambdaInvocationError MobileRequest MobileRequestError Span type The New Relic event type. Example values: Transaction , Span . AwsLambdaInvocation AwsLambdaInvocationError AwsLambdaInvocationError Data source : AWS Lambda This event is reported by New Relic monitoring for AWS Lambda. It&#39;s generated when an error occurs during a Lambda function invocation. Attribute name Definition Data types aws.lambda.arn The Amazon Resource Name (ARN) of the instrumented Lambda function. AwsLambdaInvocation AwsLambdaInvocationError aws.lambda.coldStart A boolean indicating if the AWS Lambda invocation is a cold start. AwsLambdaInvocation AwsLambdaInvocationError aws.lambda.eventSource.arn The Amazon Resource Name (ARN) of the entity that invoked the instrumented Lambda function. AwsLambdaInvocation AwsLambdaInvocationError aws.requestId ID AWS identifier of the invocation. AwsLambdaInvocation AwsLambdaInvocationError databaseCallCount count The number of database calls made by this transaction. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError databaseDuration seconds (s) The database response time in seconds. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError duration seconds (s) The total invocation time for the transaction, in seconds. (Data source: AWS Lambda) AwsLambdaInvocation AwsLambdaInvocationError error.class The class name or type for the error. This will be server and platform specific. AwsLambdaInvocationError TransactionError error.message The error message for the transaction. This will be server and platform specific. AwsLambdaInvocationError TransactionError externalCallCount count The number of external calls made by this transaction. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError externalDuration seconds (s) The total response time of all external (out-of-process) services, in seconds. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError newRelic.ingestPoint Where the data point entered the platform (such as browser.spans , or api.traces ). AwsLambdaInvocation AwsLambdaInvocationError Span parent.account ID If a distributed tracing payload is received, this is the account identifier for the transaction&#39;s upstream caller. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError parent.app ID If a distributed tracing payload is received, this is the application identifier. APM agents retrieve this value in the connect response under the key primary_application_id. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError parent.transportType When a distributed tracing payload is received, the method of transport for the payload. Example values: Unknown, HTTP, HTTPS, Kafka, JMS, IronMQ, AMQP, Queue, or Other. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError parent.type If a distributed trace payload was received, the parent&#39;s data source type. Example values: App, Browser, Mobile. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.accept The types as read from the HTTP Accept request header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.contentLength bytes (B) Incoming request size in bytes as read from the Content-Length HTTP request header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.contentType Incoming request content-type as read from the HTTP request header Content-Type . Example value: application/octet-stream . AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.host The name from the HTTP host request header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.referer The incoming request referer as read from the Referer request header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.headers.userAgent The contents of the User-Agent HTTP header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError request.method The HTTP request method used. Example values: POST, GET. AwsLambdaInvocation AwsLambdaInvocationError Span Transaction TransactionError response.headers.contentLength bytes (B) The outgoing response size in bytes as read from the Content-Length response header. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError response.headers.contentType For an HTTP response, the data type of the returned response. Example values: text/html, application/json. AwsLambdaInvocation AwsLambdaInvocationError Transaction TransactionError stackTrace The error stack trace. The format will be different depending on the agent language. AwsLambdaInvocationError traceId ID The unique ID (a randomly generated string) used to identify a single request as it crosses inter- and intra- process boundaries. This ID allows the linking of spans in a distributed trace. Included when distributed tracing is enabled. AwsLambdaInvocation AwsLambdaInvocationError MobileRequest MobileRequestError Span transactionName Name of the transaction in which the error occurred. Example value: Controller/customers/show. Value may be &#39;Unknown&#39; if an error occurs outside of a transaction. AwsLambdaInvocationError TransactionError type The New Relic event type. Example values: Transaction , Span . AwsLambdaInvocation AwsLambdaInvocationError BrowserInteraction Data source : Browser agent A BrowserInteraction represents a unit of work in a browser session, triggered by a user interacting with the webpage. It captures information about the session, AJAX calls and custom JavaScript timing that occurred as a result of the interaction. Initial load and route changes are captured as special types of browser interactions, and are used for SPA monitoring. Attribute name Definition Data types actionText The text of the HTML element that was clicked when a browser interaction started. Added to BrowserInteraction and any AjaxRequest , and JavaScriptError events that occurred during that interaction. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError ajaxCount count A count of all XHRs included in the timing of a SPA interaction. BrowserInteraction appId ID The ID of your application, as recorded by New Relic. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming PageAction PageView PageViewTiming UserAction appName The name of the application that handled the request as shown in browser monitoring. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction asn Autonomous System Number: a unique number identifying a group of IP networks that serves the content to the end user. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming Span UserAction asnLatitude The latitude of the geographic center of the postal code where the Autonomous System Network is registered. This is not the end user&#39;s latitude. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction asnLongitude The longitude of the geographic center of the postal code where the Autonomous System Network is registered. This is not the end user&#39;s longitude. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction asnOrganization The organization that owns the Autonomous System Number. Often an ISP, sometimes a private company or institution. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction backendTransactionName The name of the backend transaction that served the initial page load. BrowserInteraction browserInteractionId ID A unique value generated for each browser interaction captured by the New Relic agent. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError browserInteractionName The name of the interaction. This is either the targetGroupedUrl or the custom name set via the API. AjaxRequest BrowserInteraction BrowserTiming category The type of interaction; either initial page load, route change, or custom. BrowserInteraction city The city in which the event occurred, such as Portland or Seattle. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError Mobile MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction countryCode The country from which the browser initiated the page load. For a list of country codes, see ISO 3166-1 alpha-2. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction deviceType The type of device that loaded the page: mobile, tablet, or desktop. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError PageView UserAction domain The domain portion of the request URL. BrowserInteraction JavaScriptError PageView PageViewTiming duration seconds (s) The total time elapsed of the interaction event BrowserInteraction eventId ID A value that you can link to multiple BrowserInteraction events so you can view the interactions that occurred surrounding a specific event. For example, you can see the browser interactions that occurred prior to a JavaScript error. AjaxRequest BrowserInteraction BrowserTiming firstContentfulPaint firstContentfulPaint is the point when the browser renders the first bit of content from the DOM, which may be text, an image, SVG, or a &lt;canvas&gt; element. Google&#39;s User-centric Performance Metrics contains detailed information about its Paint Timing API and firstContentfulPaint . See Compatibility and requirements for New Relic Browser for additional information about firstContentfulPaint browser compatibility. BrowserInteraction PageView firstPaint firstPaint marks the point when the browser renders anything that is visually different from what was on the screen prior to navigation. This includes non-default background paint and the enclosing box of an iframe. Google&#39;s User-centric Performance Metrics contains detailed information about its Paint Timing API and firstPaint . See Compatibility and requirements for New Relic Browser for additional information about firstPaint browser compatibility. BrowserInteraction PageView hasReplay Indicates whether the event is associated with a session replay. If you already have custom dashboards, adding hasReplay = true to queries would allow you to search for a particular session of interest and watch the replay. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError PageView PageViewTiming UserAction hasReplay Indicates whether the event is associated with a session replay. If you already have custom dashboards, adding hasReplay = true to queries would allow you to search for a particular session of interest and watch the replay. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError PageView PageViewTiming UserAction hasTrace The hasTrace attribute specifies whether an event is associated with a session trace. If you have custom dashboards, you can enhance your queries by adding hasTrace = true . This addition allows you to search for specific sessions of interest and review their traces. BrowserInteraction PageView jsDuration seconds (s) The total duration, in seconds, spent on JavaScript execution. This attribute is only seen in AjaxRequest data that is tied to BrowserInteraction . This attribute doesn&#39;t exist for initial page load events. Starting in agent version 1.298.0, or new soft navigation feature, this is the length of time from the end of the AjaxRequest to the end of its latest callback that resulted in a long task (execution time &gt;= 50ms). If there were no long tasks, this value is 0 ( callbackEnd == end ). AjaxRequest BrowserInteraction BrowserTiming monitorAccountId The synthetic monitoring account from which you are running the monitor. BrowserInteraction JavaScriptError monitorId ID A unique number identifying a particular monitor. BrowserInteraction JavaScriptError SyntheticCheck monitorJobId ID The ID of a single synthetic monitor run, which began at a specific time and originated from a specific location. BrowserInteraction JavaScriptError parentEventId ID A unique value generated for each interaction with the page. You can use this value to group interactions together. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError previousGroupedUrl The grouped version of the URL in the browser at the start of the interaction. This value is supplied by the document.referrer attribute on initial page load interactions. BrowserInteraction previousRouteName The route name of the page at the start of the interaction. This is the last value passed by setCurrentRouteName before the start of the interaction. BrowserInteraction previousURL The ungrouped URL in the browser at the start of the interaction. This value is supplied by the document.referrer attribute on initial page load interactions. BrowserInteraction queueDuration seconds (s) The total time the request waits for a service to initiate (in seconds). BrowserInteraction PageView regionCode The specific administrative division within a country where the PageView event occurred. In the United States, regions correspond to state codes, such as WA or NY. Outside the United States, a country&#39;s regions correspond to numerical codes. In the United States, regions correspond to state codes ; for example, WA or NY . Outside the United States, a country&#39;s regions correspond to numerical codes . AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction session A unique identifier for a single session. The session is tracked in browser storage using the Web Storage API , subject to each browser&#39;s implementation and handling. The session will automatically reset or refresh after a set period of inactivity or a pre-defined duration limit, whichever is less. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming Span UserAction sessionTraceId ID Allows for linking together end user actions from session traces and querying across browser events. Not all browser events will have this. For example, PageView events complete before the first session trace harvest. Also, initial page loads from BrowserInteraction won&#39;t always include this. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction targetGroupedUrl The grouped version of the URL in the browser at the end of the interaction. BrowserInteraction PageViewTiming targetRouteName The route name for the page at the end of the interaction. The last value passed by setCurrentRouteName before the end of the interaction. BrowserInteraction targetUrl The ungrouped URL in the browser at the end of the interaction. BrowserInteraction timestamp The time (date, hour, minute, second) at which the interaction occurred. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming PageAction PageView PageViewTiming Span UserAction timeToConnectEnd seconds (s) The time, in seconds, from the start of the interaction to the connectEnd , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToConnectStart seconds (s) The time, in seconds, from the start of the interaction to the connectStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToDomainLookupEnd seconds (s) The time, in seconds, from the start of the interaction to the domainLookupEnd , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToDomainLookupStart seconds (s) The time, in seconds, from the start of the interaction to the domainLookupStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToDomComplete seconds (s) The time, in seconds, from the start of the interaction to the domComplete , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToDomContentLoadedEventEnd seconds (s) The time, in seconds, from the start of the interaction to the domContentLoadedEventEnd , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToDomContentLoadedEventStart seconds (s) The time, in seconds, from the start of the interaction to the domContentLoadedEventStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToDomInteractive seconds (s) The time, in seconds, from the start of the interaction to the domInteractive , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToDomLoading seconds (s) The time, in seconds, from the start of the interaction to the domLoading , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToFetchStart seconds (s) The time, in seconds, from the start of the interaction to the fetchStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToLoadEventEnd seconds (s) The time, in seconds, from the start of the interaction to the loadEventEnd , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToLoadEventStart seconds (s) The time, in seconds, from the start of the interaction to the loadEventStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information, see our documentation about instrumentation for the Navigation Timing API . BrowserInteraction timeToRedirectEnd seconds (s) The time, in seconds, from the start of the interaction to the redirectEnd , as defined by the Navigation Timing API. This attribute exists only for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToRedirectStart seconds (s) The time, in seconds, from the start of the interaction to the redirectStart , as defined by the Navigation Timing API. This attribute exists only for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToRequestStart seconds (s) The time, in seconds, from the start of the interaction to the requestStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToResponseEnd seconds (s) The time, in seconds, from the start of the interaction to the responseEnd , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToResponseStart seconds (s) The time, in seconds, from the start of the interaction to the responseStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToSecureConnectionStart seconds (s) The time, in seconds, from the start of the interaction to the secureConnectionStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToUnloadEventEnd seconds (s) The time, in seconds, from the start of the interaction to the unloadEventEnd , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction timeToUnloadEventStart seconds (s) The time, in seconds, from the start of the interaction to the unloadEventStart , as defined by the Navigation Timing API. This attribute exists for initial page load events, not route changes. For more information about the Navigation Timing API, see Instrumentation for Browser monitoring . BrowserInteraction trigger The cause of the route change or page load. The default values are click , submit , popstate , or initial page load . For a custom event created with the API, the default value for trigger will be api . This value can also be set via the API. BrowserInteraction userAgentName The browser’s name, such as Chrome and Firefox, obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction userAgentOS The browser’s reported operating system, such as Windows or Linux, that it is running on. This is obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction userAgentVersion The browser’s reported software version, which is obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction webAppDuration seconds (s) The total server-side response time for the top-level resource of the PageView or BrowserInteraction event (in seconds) as measured by the APM agent. This does not include network time to transmit the request or receive the response, or server-side request queueing time. The webAppDuration is measured by the APM agent and must be injected into the browser monitoring script before the request is fully finished. Its end point is slightly before the end point used to calculate the duration attribute on Transactions, so webAppDuration will be slightly less than the duration attribute on Transactions in practice. BrowserInteraction PageView BrowserPerformance Data source : Browser agent BrowserPerformance events represents performance data gathered through the web Performance API. Presently, it can contain resource timing and user timing. Attribute name Definition Data types appId ID The ID of your application, as recorded by New Relic. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming PageAction PageView PageViewTiming UserAction appName The name of the application that handled the request as shown in browser monitoring. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction asn Autonomous System Number: a unique number identifying a group of IP networks that serves the content to the end user. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming Span UserAction asnLatitude The latitude of the geographic center of the postal code where the Autonomous System Network is registered. This is not the end user&#39;s latitude. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction asnLongitude The longitude of the geographic center of the postal code where the Autonomous System Network is registered. This is not the end user&#39;s longitude. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction asnOrganization The organization that owns the Autonomous System Number. Often an ISP, sometimes a private company or institution. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction city The city in which the event occurred, such as Portland or Seattle. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError Mobile MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming UserAction countryCode The country from which the browser initiated the page load. For a list of country codes, see ISO 3166-1 alpha-2. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction currentUrl The URL value at the time of observing the event. This URL may differ from the Page URL if soft navigations have occurred. BrowserPerformance PageAction UserAction entryDuration The duration property of the PerformanceEntry. For resource type events, this is its startTime to its responseEnd. For measures, this is its end mark minus its start mark. BrowserPerformance entryName The name property of the PerformanceEntry. For resource type events, this is its URL. For marks and measures, this is the string given when their API was called. BrowserPerformance entryType The kind of performance timing that a BrowserPerformance entry was created from. The value of this attribute can be &quot;resource&quot; for PerformanceResourceTiming or &quot;measure&quot; / &quot;mark&quot; for PerformanceMeasure or PerformanceMark, respectively. BrowserPerformance firstParty Only applies to resource entryType events. Indicates whether the resource loaded is of first-party origin or not. BrowserPerformance name The name of the invoked web transaction. For example: Controller/customers/show. BrowserPerformance PageAction PageView UserAction pageUrl The URL of the page that was loaded for the PageView, for example: http://www.newrelic.com . This URL does not include query parameters. AjaxRequest BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming Span UserAction regionCode The specific administrative division within a country where the PageView event occurred. In the United States, regions correspond to state codes, such as WA or NY. Outside the United States, a country&#39;s regions correspond to numerical codes. In the United States, regions correspond to state codes ; for example, WA or NY . Outside the United States, a country&#39;s regions correspond to numerical codes . AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction session A unique identifier for a single session. The session is tracked in browser storage using the Web Storage API , subject to each browser&#39;s implementation and handling. The session will automatically reset or refresh after a set period of inactivity or a pre-defined duration limit, whichever is less. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming Span UserAction sessionTraceId ID Allows for linking together end user actions from session traces and querying across browser events. Not all browser events will have this. For example, PageView events complete before the first session trace harvest. Also, initial page loads from BrowserInteraction won&#39;t always include this. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction timestamp The time (date, hour, minute, second) at which the interaction occurred. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming PageAction PageView PageViewTiming Span UserAction userAgentName The browser’s name, such as Chrome and Firefox, obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction userAgentOS The browser’s reported operating system, such as Windows or Linux, that it is running on. This is obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction userAgentVersion The browser’s reported software version, which is obtained from the User-Agent header of an HTTP request. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction BrowserTiming Data source : Browser agent BrowserTiming is a custom event that captures SPA timing data for browser interactions started using the custom createTracer SPA API method. BrowserTiming contains many of the same attributes used by other events, especially AjaxRequest . Both this event and the createTracer method has been DEPRECATED. This event can no longer be created in current agent versions. Attribute name Definition Data types actionText The text of the HTML element that was clicked when a browser interaction started. Added to BrowserInteraction and any AjaxRequest , and JavaScriptError events that occurred during that interaction. AjaxRequest BrowserInteraction BrowserTiming JavaScriptError appId ID The ID of your application, as recorded by New Relic. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming PageAction PageView PageViewTiming UserAction appName The name of the application that handled the request as shown in browser monitoring. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError PageAction PageView PageViewTiming UserAction asn Autonomous System Number: a unique number identifying a group of IP networks that serves the content to the end user. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileHandledException MobileRequest MobileRequestError MobileSession PageAction PageView PageViewTiming Span UserAction asnLatitude The latitude of the geographic center of the postal code where the Autonomous System Network is registered. This is not the end user&#39;s latitude. AjaxRequest BrowserInteraction BrowserPerformance BrowserTiming JavaScriptError MobileApplicationExit MobileCrash MobileHandledException MobileRequest MobileRequestError
2026-01-13T09:30:15
https://newrelic.com/fr/resources/gartner-magic-quadrant-dem
2025 Gartner® Report for DEM | New Relic Passer au contenu principal Pour le moment, cette page n'est disponible qu'en anglais. A 2x Leader: New Relic Recognized by Gartner® Magic Quadrant™ for Digital Experience Monitoring Unifying DEM with intelligent observability, New Relic delivers agentic AI-driven, actionable customer experience insights New Relic has been recognized as a Leader in the 2025 Gartner® Magic Quadrant™ for Digital Experience Monitoring (DEM). This recognition follows us being named a 13x Leader in the Gartner Magic Quadrant for Observability Platforms.&nbsp; Ready to see why we were named a Leader? Uncover actionable insights and transform your digital experience with New Relic DEM. Access the report. Thank you for your submission. Please click to access the Gartner ® Magic Quadrant™ for Digital Experience Monitoring Back Suivant The latest in AI. New Relic named a Leader in 2025 Gartner Magic Quadrant for 13th year running 2025 Observability Forecast Report New Relic Digital Experience Monitoring Lancez-vous gratuitement dès aujourd'hui Démarrer gratuitement Obtenir une démo Gartner, Magic Quadrant for Digital Experience Monitoring, By Padraig Byrne, Pankaj Prasad, Martin Caren, D.B. Cummings, Matt Crossley, Tanmay Bisht, 27 October 2025. Gartner is a registered trademark and service mark, and Magic Quadrant is a registered trademark of Gartner, Inc. and/or its affiliates in the U.S. and internationally and are used herein with permission. All rights reserved. Gartner does not endorse any vendor, product or service depicted in its research publications, and does not advise technology users to select only those vendors with the highest ratings or other designation. Gartner research publications consist of the opinions of Gartner’s research organization and should not be construed as statements of fact. Gartner disclaims all warranties, expressed or implied, with respect to this research, including any warranties of merchantability or fitness for a particular purpose.&nbsp; This graphic was published by Gartner, Inc. as part of a larger research document and should be evaluated in the context of the entire document. The Gartner document is available upon request from New Relic. &nbsp; Search toggle Main navigation menu, 6 items Rechercher Submit Plateforme Plateforme d’observabilité intelligente Découvrir la plateforme APM APM 360 Observabilité d&#039;entreprise eAPM Monitoring SAP Serverless Transaction 360 Sécurité Test interactif de sécurité des applications (IAST) Security RX FinOps Intelligence Coûts du cloud Monitoring de l&#039;expérience numérique Monitoring des utilisateurs réels pour navigateurs Monitoring des utilisateurs réels pour mobile Session Replay Intelligence Streaming vidéo et publicitaire Synthetics Monitoring de performance web Intelligence Intégrations agentiques AIOps Monitoring de l&#039;IA Moteur Intelligence New Relic AI Infrastructure Monitoring AWS Cloud Monitoring Azure Cloud Monitoring des performances de bases de données Monitoring Google Cloud Monitoring d&#039;infrastructure Monitoring de Kubernetes Monitoring réseau Monitoring Prometheus Logs Gestion des logs Productivité des développeurs CodeStream Intelligence Architecture de services Capacités de la plateforme Alertes Suivi des changements Dashboards Entity Explorer Errors Inbox Contrôle de la flotte Intégrations OpenTelemetry Contrôle de pipeline Files d&#039;attente et flux de données Tarification Tarification à l&#039;utilisation Tarification basée sur l&#039;utilisation pour l&#039;observabilité full-stack — plateforme tout-en-un. Voir la tarification Gratuit Inscrivez-vous pour bénéficier d'une licence Free Tier gratuite à vie et 100&nbsp;Go/mois d'ingestion de données. 100&nbsp;Go d'ingestion de données Obfuscation automatique des logs Utilisateurs Core et Basic illimités 1 utilisateur Full Platform gratuit Plus de 30 capacités Rétention des données Démarrer gratuitement Standard Pour les petites équipes souhaitant commencer à utiliser l'observabilité. Limité à 5 utilisateurs Full Platform Assistance par tickets offerte SLA de réponse d'assistance de 2 jours ouvrables Authentification unique SAML Tarification Standard Pro Pour les équipes comptant plus de cinq ingénieurs et ayant des workloads complexes. Aucune limite au nombre d'utilisateurs Full Platform provisionnés Plusieurs options d'engagement SLA de réponse d'assistance initiale critique de 2&nbsp;heures Éligibilité à Data&nbsp;Plus Tarification Pro Enterprise Pour les organisations à l'échelle qui souhaitent une sécurité et une assistance avancées. Tout Pro avec en plus&nbsp;: Éligibilité à FedRAMP Moderate et HIPAA avec Data&nbsp;Plus Acheminement prioritaire des tickets SLA de réponse d'assistance initiale critique de 1&nbsp;heure Tarification personnalisée Solutions Les meilleures marques du monde choisissent New&nbsp;Relic Témoignages de nos clients Études de cas Monitoring de l&#039;expérience numérique Passez de la réactivité à la proactivité DevOps Consolidation des outils Open source Secteurs Retail et e-commerce Santé Médias, spectacles, divertissements ou loisirs New Relic pour les startups Organisations à but non lucratif Secteur public Technologies Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Monitoring Prometheus Monitoring SAP ServiceNow New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Enterprise Développeurs Développeurs Monitoring simple de Kubernetes Simplifiez le monitoring Kubernetes avec l&#039;opérateur New Relic Monitoring des applications sur mobile Monitorez les applications mobiles en quelques minutes avec l&#039;installation de quickstarts. Agent New Relic Browser Instrumentation personnalisée avec l&#039;agent de navigateur New Relic. 1 2 3 Documentation populaire Démarrer l&#039;ingestion des données Créer des dashboards personnalisés Examiner des requêtes NRQL Transférer des logs avec un agent d&#039;infrastructure Voir toute la documentation Plus de 780 intégrations Démarrer gratuitement. Python Installation Java Installation PHP Installation Ruby Installation Voir toutes les intégrations New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Ressources Qui sommes-nous&nbsp;? Leadership Recrutement Développement sécurisé New&nbsp;Relic for Students Espace presse ESG Forum de la communauté Assistance technique Témoignages de nos clients Des vidéos et études de cas montrent les stratégies gagnantes des entreprises grâce à l&#039;observabilité. Bibliothèque de ressources E-books, fiches techniques et livres blancs. Blog New Relic Actualité, conseils et meilleures pratiques du secteur. Événements et webinaires Rejoignez-nous à un événement ou une formation. New Relic University Parcours d&#039;apprentissage et formations. Calculateur de la valeur de l&#039;observabilité Découvrez la valeur de New Relic pour votre entreprise. New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 1 2 3 Search toggle Se connecter Se connecter Démarrer gratuitement Obtenir une démo Se connecter Se connecter Démarrer gratuitement Obtenir une démo ENTREPRISE ENTREPRISE Qui sommes-nous ? Recrutement Leadership Impact social Code de conduite ESG Portail des fournisseurs Principes d&#039;IA PRODUIT PRODUIT Intégrations Plateforme Sécurité VALEUR VALEUR Tarification Free Tier New Relic Comparatif New Relic/Datadog Comparatif New Relic/Dynatrace Comparatif New Relic/Splunk RESSOURCES RESSOURCES Blog Études de cas clients Forum de la communauté Documentation Communiqués de presse New Relic University Programme de partenariat Prévisions 2025 sur l&#039;observabilité Professional Services FAQ FAQ Qu’est-ce que le monitoring d’infrastructure ? Qu&#039;est-ce que l&#039;observabilité ? Qu’est-ce que Kubernetes ? Six étapes pour obtenir l&#039;observabilité d&#039;entreprise Les meilleures pratiques de gestion des logs Un seul outil suffit pour le monitoring d&#039;infrastructure et l&#039;APM Guide rapide pour démarrer avec New Relic Raisons pour lesquelles vous avez besoin d&#039;IAST Contactez-nous Conditions de service Politique DMCA Politique de confidentialité Conditions du site web Vos choix de confidentialité Cookies Déclaration sur l&#039;esclavage moderne Avis sur les brevets Français English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. Tous droits réservés. Comment New Relic peut-il aider le monitoring de votre stack? Démarrez gratuitement avec 100 Go + 1 utilisateur. Démarrer Suivez notre visite guidée du produit. Obtenir une démo Tarification simple et transparente Service des ventes
2026-01-13T09:30:15
https://newrelic.com/fr/instant-observability
Instant Observability | New Relic Passer au contenu principal Pour le moment, cette page n'est disponible qu'en anglais. Monitor everything in your stack. Our quickstarts bundle everything you need to start monitoring like a pro right out of the box. Start For Free Log In Lancez-vous gratuitement dès aujourd'hui Démarrer gratuitement Obtenir une démo Search toggle Main navigation menu, 6 items Rechercher Submit Plateforme Plateforme d’observabilité intelligente Découvrir la plateforme APM APM 360 Observabilité d&#039;entreprise eAPM Monitoring SAP Serverless Transaction 360 Sécurité Test interactif de sécurité des applications (IAST) Security RX FinOps Intelligence Coûts du cloud Monitoring de l&#039;expérience numérique Monitoring des utilisateurs réels pour navigateurs Monitoring des utilisateurs réels pour mobile Session Replay Intelligence Streaming vidéo et publicitaire Synthetics Monitoring de performance web Intelligence Intégrations agentiques AIOps Monitoring de l&#039;IA Moteur Intelligence New Relic AI Infrastructure Monitoring AWS Cloud Monitoring Azure Cloud Monitoring des performances de bases de données Monitoring Google Cloud Monitoring d&#039;infrastructure Monitoring de Kubernetes Monitoring réseau Monitoring Prometheus Logs Gestion des logs Productivité des développeurs CodeStream Intelligence Architecture de services Capacités de la plateforme Alertes Suivi des changements Dashboards Entity Explorer Errors Inbox Contrôle de la flotte Intégrations OpenTelemetry Contrôle de pipeline Files d&#039;attente et flux de données Tarification Tarification à l&#039;utilisation Tarification basée sur l&#039;utilisation pour l&#039;observabilité full-stack — plateforme tout-en-un. Voir la tarification Gratuit Inscrivez-vous pour bénéficier d'une licence Free Tier gratuite à vie et 100&nbsp;Go/mois d'ingestion de données. 100&nbsp;Go d'ingestion de données Obfuscation automatique des logs Utilisateurs Core et Basic illimités 1 utilisateur Full Platform gratuit Plus de 30 capacités Rétention des données Démarrer gratuitement Standard Pour les petites équipes souhaitant commencer à utiliser l'observabilité. Limité à 5 utilisateurs Full Platform Assistance par tickets offerte SLA de réponse d'assistance de 2 jours ouvrables Authentification unique SAML Tarification Standard Pro Pour les équipes comptant plus de cinq ingénieurs et ayant des workloads complexes. Aucune limite au nombre d'utilisateurs Full Platform provisionnés Plusieurs options d'engagement SLA de réponse d'assistance initiale critique de 2&nbsp;heures Éligibilité à Data&nbsp;Plus Tarification Pro Enterprise Pour les organisations à l'échelle qui souhaitent une sécurité et une assistance avancées. Tout Pro avec en plus&nbsp;: Éligibilité à FedRAMP Moderate et HIPAA avec Data&nbsp;Plus Acheminement prioritaire des tickets SLA de réponse d'assistance initiale critique de 1&nbsp;heure Tarification personnalisée Solutions Les meilleures marques du monde choisissent New&nbsp;Relic Témoignages de nos clients Études de cas Monitoring de l&#039;expérience numérique Passez de la réactivité à la proactivité DevOps Consolidation des outils Open source Secteurs Retail et e-commerce Santé Médias, spectacles, divertissements ou loisirs New Relic pour les startups Organisations à but non lucratif Secteur public Technologies Amazon Web Services Google Cloud Platform Microsoft Azure Pivotal Cloud Foundry Monitoring Prometheus Monitoring SAP ServiceNow New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Enterprise Développeurs Développeurs Monitoring simple de Kubernetes Simplifiez le monitoring Kubernetes avec l&#039;opérateur New Relic Monitoring des applications sur mobile Monitorez les applications mobiles en quelques minutes avec l&#039;installation de quickstarts. Agent New Relic Browser Instrumentation personnalisée avec l&#039;agent de navigateur New Relic. 1 2 3 Documentation populaire Démarrer l&#039;ingestion des données Créer des dashboards personnalisés Examiner des requêtes NRQL Transférer des logs avec un agent d&#039;infrastructure Voir toute la documentation Plus de 780 intégrations Démarrer gratuitement. Python Installation Java Installation PHP Installation Ruby Installation Voir toutes les intégrations New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. 1 2 3 Ressources Qui sommes-nous&nbsp;? Leadership Recrutement Développement sécurisé New&nbsp;Relic for Students Espace presse ESG Forum de la communauté Assistance technique Témoignages de nos clients Des vidéos et études de cas montrent les stratégies gagnantes des entreprises grâce à l&#039;observabilité. Bibliothèque de ressources E-books, fiches techniques et livres blancs. Blog New Relic Actualité, conseils et meilleures pratiques du secteur. Événements et webinaires Rejoignez-nous à un événement ou une formation. New Relic University Parcours d&#039;apprentissage et formations. Calculateur de la valeur de l&#039;observabilité Découvrez la valeur de New Relic pour votre entreprise. New Relic Now Regarder la vidéo et découvrez les dernières fonctionnalités et capacités qui façonnent l&#039;observabilité. 2025 Gartner® Magic Quadrant™ New Relic nommé leader en observabilité pour la 13e fois. En savoir plus. Gartner® Magic Quadrant™ New Relic nommé leader en DEM pour la 2e fois par Gartner. 1 2 3 Search toggle Se connecter Se connecter Démarrer gratuitement Obtenir une démo Se connecter Se connecter Démarrer gratuitement Obtenir une démo ENTREPRISE ENTREPRISE Qui sommes-nous ? Recrutement Leadership Impact social Code de conduite ESG Portail des fournisseurs Principes d&#039;IA PRODUIT PRODUIT Intégrations Plateforme Sécurité VALEUR VALEUR Tarification Free Tier New Relic Comparatif New Relic/Datadog Comparatif New Relic/Dynatrace Comparatif New Relic/Splunk RESSOURCES RESSOURCES Blog Études de cas clients Forum de la communauté Documentation Communiqués de presse New Relic University Programme de partenariat Prévisions 2025 sur l&#039;observabilité Professional Services FAQ FAQ Qu’est-ce que le monitoring d’infrastructure ? Qu&#039;est-ce que l&#039;observabilité ? Qu’est-ce que Kubernetes ? Six étapes pour obtenir l&#039;observabilité d&#039;entreprise Les meilleures pratiques de gestion des logs Un seul outil suffit pour le monitoring d&#039;infrastructure et l&#039;APM Guide rapide pour démarrer avec New Relic Raisons pour lesquelles vous avez besoin d&#039;IAST Contactez-nous Conditions de service Politique DMCA Politique de confidentialité Conditions du site web Vos choix de confidentialité Cookies Déclaration sur l&#039;esclavage moderne Avis sur les brevets Français English Français Deutsch 한국어 日本語 Español Português ©2008-26 New Relic, Inc. Tous droits réservés.
2026-01-13T09:30:15
https://choppity.com/?via=ref-media
Choppity: AI-Powered Video Editor to Get 30+ Short Clips Instantly Choppity now loads +80% faster for all users. View all our latest updates. Features AI video editor Edit videos automatically with AI Clip anything Find any moment and clip it with AI Transcript editing Edit text to edit video. Profanity censoring Automatically censor swear words Automated tracking Tracks subjects’ movement automatically. Automated framing AI reframes video speakers perfectly. Automated captions Auto-generate captions with customization. Find specific moments Search videos to locate moments. Short clips generator AI instantly creates engaging clips. Solutions Content creators Create more content without burnout. Podcasters Turn podcast episodes into short clips. Real estate agencies Turn property videos into clips that sell. Sales Turn screen recordings into sales-ready clips. Ecommerce Turn product videos into clips that drive sales. Churches Turn sermons into clips that reach more people globally. Social media marketers Repurpose long videos into short clips. Course creators Turn course lessons into clips that sell. Coaches Turn coaching videos into client-attracting clips. Marketing agencies Turn client videos into clips that drive growth. Pricing What&#x27;s new Features Short clips generator AI instantly creates engaging clips. Find specific moments Search videos to locate moments. Automated captions Auto-generate captions with customization. Automated framing AI reframes video speakers perfectly. Automated tracking Tracks subjects’ movement automatically. Profanity censoring Automatically censor swear words Transcript editing Edit text to edit video. Clip anything Find any moment and clip it with AI AI video editor Edit videos automatically with AI Use cases Page one Lorem ipsum dolor sit amet consectetur elit Page two Lorem ipsum dolor sit amet consectetur elit Page three Lorem ipsum dolor sit amet consectetur elit Page four Lorem ipsum dolor sit amet consectetur elit Pricing What&#x27;s new Login Sign up Trusted by 90,000+ users worldwide Turn podcasts and long-form videos into 30+ short viral clips with AI Stop spending hours editing. Choppity is the AI video editor for social media that automatically identifies, crops, and captions your best moments for TikTok, Instagram Reels, and YouTube Shorts - with full creative control to fine-tune every clip like a pro . Paste a YouTube link (or upload a file) to start... Generate free clips or Upload a file The videos below were generated with Choppity, try it now . 👇👇👇 The #1 AI video editor for social media. Trusted by 90,000+ podcasters, agencies, and creators worldwide How it works: Your end-to-end workflow for repurposing content Choppity saves you time by automating tedious editing, whilst still giving you full control to edit everything. Step 1: Import from YouTube or upload Don&#x27;t waste time (and bandwith). Paste any YouTube link or upload MP4/MOV files directly. Our AI Video Clipper ingests hour-long content in minutes. Try for free Step 2: Pick your video and caption styles Consistency is key. Set your custom fonts, logos, and colors once. The AI applies your brand template to every clip automatically. Try for free Step 3: AI generates 30+ short clips from the best moments Choppity&#x27;s AI analyzes conversation context to find viral hooks, funny moments, and key insights - automatically filtering out silence and fluff. Try for free Step 4: Refine, polish and download! Get clips natively formatted for 9:16 (vertical), 1:1 (square), or 16:9. Ready to post directly to TikTok, Shorts, and Reels. Try for free Step 5: (For the power users and video editors) Edit like a pro and customize For the power users or video editors. Make final edits with full control - add additional b-rolls, sound effects, music, tweak framing, captions, timing, and formats before exporting for TikTok, Shorts, and Reels. Everything is customizeable. Try for free These podcasters, creators, content teams and founders said yes, look what happened Here&#x27;s what happened when you stop trying tools or dabble with video editors and start using Choppity. &quot;All these random startups and VC-backed companies going after the &quot;creator economy&quot;. Now this is how you do it. For creators, built by creators. Super bullish on products being built for the pain points already felt deeply by the founder. Let&#x27;s goooooo!&quot; Alex B. YouTuber &amp; Founder EfficientApp &quot;Exactly the solution I was looking for. Just generated all these clips whilst in bed! Awesome work and congrats on the launch&quot; Ramish YouTuber &amp; Designer &quot;After a few small technical issues the team really went above and beyond to help. They were fast and efficient and really made all the difference. I don’t think I have had this type of customer service … maybe ever lol - Thank you and recommend&quot; Nicole B. Content creator &quot;We&#x27;ve been using Choppity for the last 6 months or so for the AutoTrader tech podcast. We&#x27;ve seen a massive increase in our views and subscribers! Couldn&#x27;t have done it without Choppity.&quot; Callum B. Product Lead @ AutoTrader &quot;Since we&#x27;ve started using Choppity, our socials have seen a 4x increase in overall views across our channels. Love the non-stop product updates as well.&quot; Vaibhav Founder @ SmartLead.ai &quot;Want cleaner podcasts without spending hours editing? We found an AI tool that automatically censor swear words audio bleeps AND caption cleanup ! Choppity. Game changer&quot; AwesomeCast | Tech Podcast YouTuber &quot;The Choppity team have been shipping new updates to the product which I am quite happy about. It&#x27;s getting faster and they are also giving us the features we&#x27;ve been asking for !&quot; Amy L. Finance creator &quot;In the past I&#x27;ve tried to get my YouTube video editor to create mass amount of short form content, but they struggled. Economically it didn&#x27;t make sense and the quality wasn&#x27;t great. Choppity has been an INCREDIBLE asset in scaling up my short-form video reach . Having ALL the clips automatically clipped, styled and ready to publish has been the biggest lever to growing my businesses.&quot; Michael W. YouTuber &amp; Designer How it works: Every feature you need to generate short clips superfast Choppity saves you time by automating tedious editing, whilst still giving you full control to edit everything. Short clips generator Automatically turn long-form videos or podcasts into viral short clips. Perfect for TikTok, Reels, and YouTube Shorts with zero manual editing required. Learn more Find specific moments AI instantly detects key moments, quotes, and highlights in your podcast or video, helping you create high-impact short clips effortlessly. Learn more Automated captions Generate 97%+ accurate subtitles in seconds. Customize animations to mimic the style of top creators like Alex Hormozi. Learn more Automated framing Automatically crop landscape video into vertical vertical formats. The AI keeps the subject centered, so you never have to keyframe manually. Learn more Automated tracking Our AI detects who is talking and switches focus instantly. Perfect for multi-speaker podcasts and Zoom interviews. Learn more Auto-censor profanity Keep your content monetizable and brand-safe. Automatically detect and beep/mute swear words with one toggle. Learn more Text-based video editing Edit your video by editing the text. Delete a word in the transcript, and Choppity cuts it from the video automatically. Learn more Keyword search and clip Looking for a specific quote? Search the transcript for keywords and instantly turn that segment into a standalone clip. Learn more Suggest a feature We ship new features every month. Let us know what you&#x27;re looking for. Suggest an idea Control: The speed of AI. The precision of a pro editor. No &quot;AI Hallucinations&quot; Unlike other tools that give you random outputs, Choppity gives you a fully editable timeline. Tweak the start/end times, adjust the crop, and fix typos in the captions. Preserve full-control of clips AI isn&#x27;t perfect, but you are. Use our powerful video editor to ensure your clips make sense and don&#x27;t cut off mid-sentence. 40+ Settings and styles you can customise within the app 100% Creative control stays in your hands always Quality Edit videos like a Word document With Choppity, you can edit videos using the transcript of the spoken words. The purple-highlighted section represents the part currently selected from your video. • Drag one of the handles to trim. • Highlight a section in the middle and cut it out. • Add an image or a b-roll video on any part of the transcript. 3x Faster video editing with a document-led approach 100% Creative control stays in your hands always Results Working with others is simple and just one link away If you need a friend or a teammate to work with you, invite them to your team. You can work on the same videos together in a shared space. For better organization and structure, you can create sub-teams (teams within teams). With Choppity, you can simply send a link direct to a video project, and you’re done. No more waiting for videos to upload and process on YouTube. 56% Users on Choppity are part of a team Podcasters, YouTubers, content creators and media companies worldwide are saving time and scaling faster. Choppity users report faster workflows, wider reach, and more engagement. The numbers speak for themselves. Clips created 500K+ Generated since we&#x27;ve launched. Hours saved 130K+ Manual editing time eliminated Users worldwide 90K+ From the United Kingdom to United States. &quot;We&#x27;ve seen a massive increase in our views and subscribers&quot; PS. The testimonial was recorded and automatically edited with Choppity. Callum Barker-Nicol Product Lead @ AutoTrader FAQ Common questions about Choppity and how it works What is Choppity? Choppity is an AI-powered video editing platform that automatically turns hours of podcasts, webinars, interviews, or any talking content into dozens of engaging short clips, all in minutes instead of hours. The platform uses semantic understanding to identify impactful moments, insights, jokes, reactions, or key teaching points. It automatically adds captions, reframes for different platforms, tracks speakers, and handles technical details so you can focus on creating great content. How does Choppity work? Upload your long-form video or paste a YouTube URL. Choppity&#x27;s AI automatically transcribes your video and identifies high-impact moments, jokes, insights, reactions, and engaging hooks. Within minutes, you&#x27;ll see dozens of short clips generated with perfect framing, animated captions, and platform-optimized formatting. Edit clips by editing the transcript text, delete a sentence to trim, adjust text to refine timing. It&#x27;s like editing a Google Doc, but your video updates automatically. Export clips optimized for TikTok, Instagram Reels, YouTube Shorts, or any platform. What video formats does Choppity support? Choppity supports all major video formats including MP4, MOV, AVI, and more, no need to convert files before uploading. You can also import videos directly from YouTube by pasting the URL. Choppity works best with talking content, podcasts, interviews, webinars, tutorials, and commentary videos where people are speaking. Can I use Choppity for free? Yes! Choppity offers a free plan so you can try the platform and see if it fits your workflow. The free plan lets you upload videos, generate clips, and explore the editing tools. Paid plans unlock more features, higher processing limits, brand templates, priority processing, and more. Check our pricing page for the latest plans and features. What platforms can I export clips for? Choppity exports clips optimized for all major social platforms: TikTok, Instagram Reels, YouTube Shorts, and more. The platform automatically reframes videos for different aspect ratios, 9:16 for TikTok/Reels, 1:1 for Instagram feed, 16:9 for YouTube. You can export the same clip in multiple formats simultaneously, so you can publish everywhere without creating separate versions. Do I need video editing experience to use Choppity? Not at all! Choppity was designed for people who have never touched a video editing timeline. Instead of scrubbing through timelines, you edit by editing text, delete a sentence to trim a clip, edit text to fix captions. The AI handles all technical work—transcription, moment detection, framing, caption generation, and formatting. If you can edit a Google Doc, you can use Choppity. How long does it take to process a video in Choppity? Choppity processes videos in 5-15 minutes, depending on length. A 30-minute podcast might take 5-7 minutes, while a 2-hour webinar might take 12-15 minutes. Once clips are generated, you can review, edit, and export them in real-time with instant updates. You can go from a long-form video to 30+ of polished, ready-to-publish clips in under 30 minutes. Can I import videos from YouTube? Yes! Simply copy the YouTube link and paste it into Choppity. We&#x27;ll import and process the video directly, no need to download anything first. This is perfect for repurposing existing content. If you have a podcast episode or webinar already on YouTube, you can quickly create short clips for TikTok, Instagram, or other platforms. How many clips can I generate from one video? From one long-form video, Choppity can generate 20-50+ short clips, depending on the length and richness of your content. The AI uses semantic understanding to identify high-impact moments, jokes, insights, reactions, powerful statements, teaching moments, and engaging hooks. A 60-minute podcast might yield 30-40 clips, while a 2-hour webinar could produce 50+ clips. Is Choppity suitable for teams and agencies? Absolutely! Choppity is built for teams and agencies managing multiple clients. The platform offers brand templates, save your custom styling (colors, fonts, caption styles) into reusable templates that automatically apply to every video for a client. You can organize projects by client, maintain separate brand templates for each, and deliver results faster than traditional editing workflows. Teams can collaborate on projects, share templates, and maintain quality standards across all work. Still have questions Reach out to our team anytime Contact Repurpose content for every platform. Choppity is the ultimate AI podcast clip maker and generator . Whether you are a solo creator or a marketing agency, use our AI video clipper to scale your content strategy without hiring an editing team. Get tips, updates, and new features delivered to your inbox. We respect your privacy and only send what matters. Thanks for signing up. Check your inbox soon. Something didn&#x27;t work. Please try again. Features AI video editor Clip anything Transcript editing Profanity censoring Automated tracking Automated framing Automated captions Find specific moments Short clips generator Solutions Content creators Podcasters Real estate agencies Sales Ecommerce Churches Social media marketers Course creators Coaches Marketing agencies Product Features Pricing Contact About Tools Podcast name generator Resources Blog Affiliates Press Blog Best Sermon Short Clips Makers &amp; Generators (2026 Edition) Best YouTube Video Clip Makers &amp; Generators (2026 Edition) Best AI Podcast Clip Makers &amp; Generators (2026 Edition) Best Podcast Microphones in 2026 Best Podcast Equipment for Beginners in 2026 How to Grow a Podcast on Apple How to Grow a Podcast on Spotify How to Grow a Podcast on YouTube How to Start a Podcast on Apple (2026 Edition) How to Start a Podcast in 2026 (Beginners Guide) How to Start a Podcast on YouTube (2026 Edition) How to Start a Podcast on Spotify (2026 Edition) New leadership, vision and future for Choppity Follow us Facebook Instagram X LinkedIn YouTube © 2025 Choppity. All rights reserved. Privacy policy Terms of use
2026-01-13T09:30:15
https://mspoweruser.com/best-ai-video-generator/
Best AI Video Generator: 5 Tools To Unleash Your Creativity Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 4 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 4 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 4 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 4 weeks ago Get Weekly Updates Best AI Video Generator: 5 Tools To Unleash Your Creativity Home » AI Vladimir Popescu Windows Expert AI 8 min. read Updated on November 2, 2025 Choosing the best AI video generator out of the sea of options can be daunting, but I&#8217;ve used my experience to pick 5 of the best apps available. My research results are below, so let&#8217;s explore these powerful AI text-to-video tools ! Best AI Video Generator Tools Before diving into the details of each tool, you can have a quick overview of the software I chose and its capabilities. Software Overview Customer Reviews Key Features Pricing InVideo AI &#8211; Great at creating compelling short-form content. &#8211; User-friendly interface and robust features. 5/5 &#8211; Wide range of templates &#8211; Text-to-video generation &#8211; Talking AI avatars &#8211; AI script generator &#8211; AI voice generator &#8211; Plus &#8211; $20/month &#8211; Max &#8211; $48/month Fliki &#8211; User-friendly interface and comprehensive features. &#8211; Generates high-quality AI videos quickly and efficiently. 5/5 &#8211; Text-to-video generation &#8211; Idea-to-video creation &#8211; Voice cloning &#8211; Avatar creator &#8211; AI voiceover &#8211; Standard &#8211; $21/month/user &#8211; Premium &#8211; $66/month/user &#8211; Enterprise &#8211; Undisclosed price Pictory &#8211; Advanced AI capabilities and ease of use. &#8211; Useful for transforming long-form into short &amp; sharable content. 5/5 &#8211; Turn an entire blog post into a video &#8211; Instantly makes highlight reels &#8211; Starter &#8211; $19/month &#8211; Professional &#8211; $39/month &#8211; Teams &#8211; $99/month Visla &#8211; Intuitive design and efficient video generation. &#8211; Helpful in transforming various types of content into high-quality videos. 4/5 &#8211; AI-generated content &#8211; Video editing tools &#8211; Premium &#8211; $19/month Designs.ai by Inmagine &#8211; Comprehensive features and flexibility. &#8211; Helps create and customize videos quickly 3/5 &#8211; AI-generated content &#8211; Basic &#8211; $17/month &#8211; Pro &#8211; $43/month &#8211; Enterprise &#8211; $129/month Now that we&#8217;ve had a quick look, let&#8217;s jump into each software&#8217;s details, capabilities, and features. 1. InVideo AI InVideo is my top pick for the best AI video generator, as it offers a simple-to-use design and powerful features. If you want to create short videos and pieces of content, this is the perfect app. You can use this tool in various situations, including teaching, training, and even marketing . Users have received the InVideo app well, as it gathered many positive reviews regarding excitement its ease of use and functionality. You can use the built-in templates to create incredible videos without wasting time. This makes it easy for users of every proficiency level to use this app. Furthermore, it saves much time, especially for users who manage multiple projects simultaneously. InVideo also includes a powerful AI slideshow maker , allowing for creating dynamic slideshows with ease. Even though this element doesn&#8217;t connect directly with our task for the day, it is still handy to have available. There are also talking AI avatars that can make your videos unique, increasing engagement. InVideo also includes features like AI Script Generator and an AI Voice Generator . You can use these tools if you want to create videos with voiceovers but don&#8217;t want to hire any professional voice actors or writers. InVideo offers two paid plans that ensure access to more tools and features: InVideo Plus &#8211; $20/month InVideo Max &#8211; $48/month Overall, InVideo offers many valuable tools to create, edit, modify, and optimize your videos to suit your needs. The output quality is exceptionally high so you can use this tool for any project, no matter how demanding. Try InVideo 2. Fliki Fliki is another great AI video generator that offers a user-friendly interface and great functionality. It&#8217;s perfect for generating high-quality AI videos with ease. The user interface is easy to navigate and straightforward , and starting a new video project only takes a few seconds. To begin, we must click the red New File button and configure our project according to our needs. As you can see, Fliki has excellent customization features that ensure your text-to-video experience is simple yet productive. You can choose where the AI takes its information and visuals from. After writing my prompt (the same one used for all apps in this list), the AI took just 10 seconds to create a set of scenes with different nature videos. The customization features post-creation are comprehensive . To customize a specific scene, all you have to do is select it from the sidebar and then apply modifications. When it comes to pricing, Fliki offers three plans: Fliki Standard &#8211; $21/month/user Fliki Premium &#8211; $66/month/user Fliki Enterprise &#8211; Undisclosed As you can see, Fliki has a wide range of valuable tools that can help you quickly generate videos from ideas and text. Try Fliki 3. Pictory Pictory offers powerful features that make the video creation process simple. This tool can transform long-form content, scripts, and ideas into high-quality videos . Users online are very satisfied with what Pictory offers and are specifically excited about the text-to-video feature. They found the app easy to use and intuitive, and I agree. You can use a prompt to generate a video, while the comprehensive customization options make it easy to fine-tune the output. After you&#8217;re satisfied with the customization level, you can press the purple Proceed button, and wait for the AI to analyze, and generate your video. The process only took about a minute , and a video showing images and the text of my prompt was generated. The editing process is also intuitive. You can use the left-hand side toolbar to apply effects, modify text, remove and add scenes, etc. In terms of pricing, Pictory has three plans available: Pictory Starter &#8211; $19/month Pictory Professional &#8211; $39/month Pictory Teams &#8211; $99/month With affordable pricing, great functionality, and intuitive user experience, Pictory is definitely worth your attention. Try Pictory 4. Visla Visla is another AI video generator with a very user-friendly interface, making it suitable for beginners and experienced creators. You can use this tool to create fascinating videos with various types of content. The user reviews praise its high-quality outputs and feature set. You can generate videos from various sources including an idea, text, and even long-form blog posts. You can also add your own resources , like images, videos, and screenshots, to customize the results. The video generation process took about a minute, and the results speak for themselves. To easily manage your video&#8217;s scenes, add effects, and customize every aspect, you get an intuitive timeline-like structure . You can easily modify the AI voice narrator, add graphics, change the video style, add custom transitions between scenes, etc. Regarding pricing, Visla only offers a Premium plan that costs $19/month , which includes all advanced AI features. Try Visla 5. Designs.ai by Inmagine Designs.ai is the last AI video generator to make the list, but it still provides excellent features and flexibility. It can generate custom videos quickly and easily, so anybody can use it. The app is more straightforward than others from this list , presenting you with the prompt window as soon as you initiate the creation process. Users have been as impressed as I am by Designs.ai&#8217;s capabilities. They praise its simplicity and commitment to user satisfaction. After writing your video prompt, you can choose an end-screen message or a CTA. The next step will allow you to customize your video output by choosing the industry it&#8217;s intended for . This will tell the AI what style to adopt for the best results. You can choose the language and voiceover virtual persona in the next window. These settings will determine how the video will be created and the narrator&#8217;s voice, which will read your prompt, besides adding the video scenes. You can preview your video and apply any effect or modification you want as soon as you finish the creation process. In terms of pricing, Designs.ai has three variations: Designs.ai Basic &#8211; $17/month Designs.ai Pro &#8211; $43/month Designs.ai Enterprise &#8211; $129/month Choosing the right plan will depend on your exact needs, but either of them will help you generate amazing videos from text prompts, so give it a try! Try Designs.ai How to Create a Video with AI Now, let me show you how to create your first video, using InVideo for the demonstration: Open the InVideo platform , and write your text prompt in the text field. Press the Generate A Video button to initiate the process. Choose the Audience , Look &amp; Feel , and Platform so the AI can optimize your video. Wait for the AI to generate the scenes. As soon as the task is complete, you&#8217;ll see your video. Click the Edit button if you wish to apply any changes. Or you can use another set of text prompts to modify the video to your desire. Click Export to download the video. Final Thoughts on The Best AI Video Generator Tools Tools like InVideo , Fliki , Pictory , Visla , and Designs.ai are making the video generation process easy and accessible. Choosing any of them will help you create engaging videos from ideas, text, and even entire blog posts. And you&#8217;ll get tons of customization and editing options to make the final output your own. Vladimir Popescu Windows Expert With an innate fascination for research, and the capacity to synthetize complex information, Vladimir has been a Windows Expert for 10+ years. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://mspoweruser.com/director-suite-365-review/
Director Suite 365 Review: Is It a Must-Have? Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 4 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 4 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 4 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 4 weeks ago Get Weekly Updates Director Suite 365 Review: Is It a Must-Have? Home » Apps Tamal Das Tech Analyst Apps 24 min. read Updated on November 6, 2025 This ultimate Director Suite 365 Review is a handy resource if you&#8217;re planning to buy the software anytime soon. I tested all of its features and modules for several days. Here, I&#8217;ve outlined its main functionalities and how well they perform, plus the user interface and experience, availability of expert assistance, and paid subscription options. Sounds good? Let&#8217;s dive into the nitty-gritty! But first: What is Director Suite 365? CyberLink Director Suite 365 is a leading desktop video editing software with additional creative solutions like an image editor , color correction tool, audio editor, and DVD burner /player. With these essential tools, you also get the following value-adding features: Marketing-grade graphics and motion video designer and creator. Creative image and video editing effects , like those for social media, weddings, comics, impressionist art, etc. A complete package of AI tools for content creation and editing, like AI text-to-speech , face blur for privacy, AI animes, character body effects, speech-to-text , denoising of recorded audio, and changing voices with AI. Mobile apps for multimedia editing and post-production on the go. An application management interface to get all the essential Director Suite apps under one super app. Overall, it&#8217;s a complete multimedia creator software to produce studio-grade processing of motion videos for the box office, corporate events, wedding photoshoots, public concerts, and more. Pros Cons Free trial available with limited features. Free edition outputs have a watermark . Operates on a subscription model for affordability. You need to buy separate mobile and desktop app subscriptions. It offers more features than similarly-priced competitors. While easier than some, there&#8217;s still a moderate learning curve for its advanced features. It includes free-to-use professional effects like transitions, vector art, etc., to spice up multimedia videos. Green screen functionality might require some tweaking for proper results due to chromakey issues. If available, automatically utilizes your system&#8217;s GPU to render multimedia and images faster. Creating and editing title cards can be a bit challenging. Comes with an easy-to-use super app, so you can launch the required tool from one central interface. Not suitable for remote and real-time online collaboration. Elaborate tutorials and learning content to help you get started. You&#8217;ll need to upload the same project on multiple Director Suite 365 apps for better coordination with different modules. You can buy its individual apps for monthly and yearly subscriptions. GPU-less rendering might include unwanted artifacts and quality glitches in the finished video or image. Create closed captions and video chapters with AI to comply with YouTube video standards. It receives frequent upgrades that include special effects, transitions, etc., to match the current trends. Also available on smartphones. Get Director Suite 365 for free Director Suite 365 Features Now, let me show you the tool&#8217;s main features and how effective they are: PowerDirector 365 PowerDirector 365 is a powerful video editing software with AI APIs that enhance the software user experience manyfold. You&#8217;ll barely need to click twice or thrice to produce awesome videos if you use the AI tools along the way. If you&#8217;re an expert movie-maker and editor, you can use more conventional editing tools for finer results. It comes with a straightforward launcher screen. Here, you can do the following: New Project: You can quickly choose an Aspect Ratio of your choice and click on the New Project button to bring up the PowerDirector canvas . More on that later. Open Project: If you&#8217;ve already been working on a project and saved it in the local storage, you can use this tool to open past projects. AI Video Editing Tools: These are a collection of AI video processing APIs, like AI Face Blur , Anime Video, Body Effects, Background Remover (video), Audio Denoise, and more. Regular Video Editing Tools: This group comprises conventional video editing features, like Video Stabilizer, Video Denoise, Trim Video, Crop &amp; Rotate, and more. If the video editing tool you need is available on the splash screen, start with that instead of opening the generic editor interface. The smart algorithm of PowerDirector 365 will automatically open the right editor depending on the video and its quality features. Not to mention, you&#8217;ll get helpful first-time hints to get going quickly. When you open a new project, you get a timeline-view-based video editing interface. There, you can add up to 100 video tracks and their corresponding audio tracks. You&#8217;ll mainly use the timeline to mix videos and audio. Within the editor, near the top menu bar, you&#8217;ll find various elements to spice up your video. These tools include Titles , Transitions , Effects , Overlays , Subtitles , and Templates . If you&#8217;re just exploring the tool, choose a video editing template from the Templates library. Then, you can replace the existing content with your own video, and add a few other effects, like vector art overlays using drag-and-drop action. PhotoDirector 365 It&#8217;s a user-friendly image editing tool powered by generative AI APIs for various photo-enhancing tasks like editing, resizing, and retouching. It has the following primary editing and organizing tools: Organize: This feature helps you to create a rich library of still images for further content creation projects. For example, you can create a new project, like Documentary Pictures . Then, save all the images for it in default or custom collections. The default ones are the Smart Collections , like All Photos, Recently Edited, latest Imports, CyberLink Cloud, and Rejected. Alternatively, you can create a new Smart Collection with a custom name. The idea of this tool is to keep photographs readily available for editing. Adjust: The Adjust tab lets you enhance images with Manual and Presets effects. If you&#8217;re an expert, you should check out the features of the Manual adjustments section. It offers advanced image processing tools, like White Balance, Tone, HDR Effect, Level, Curve, and more. Alternatively, if you&#8217;re new to photography, you can go with the Presets option . It offers 5 to 6 presets for styles like Black &amp; White, Color Creative, HDR, Portrait, Scenery, Split Toning, Style, etc. Edit: The Edit canvas is where all image editing and AI generation take place. Here, you&#8217;ll find a blend of conventional and AI tools to edit photographs, enhance their visual quality, and introduce effects. Depending on your image editing expertise, you can choose between the Guided and Expert image editing interfaces. In the Guided mode, you can explore AI tools, like AI Image Enhancer, Background Replace and Remove with AI, Object Removal with AI, prompt-based generative AI Effects, AI Improvements (Denoise, Image Upscaler, and Deblur), etc. For quick editing and publishing tasks, you can use the instant tools available on the PhotoDirector 365 splash screen. It contains a mix of both standard and AI image processing modules. I&#8217;m outlining the most useful ones for you below: AI Image Manipulation Tools: This group comprises tools, like AI Image Enhancer, AI Replace, AI Outfit, AI Headshot, AI Image Generator, and AI People Background. Image Effects: Here, you&#8217;ll find Picture to Painting, AI Color Enhancement, AI Denoise, Blur Tools, etc., tools. Image Correction Tools: Offers Image Resize , Crop and Rotate, Background Remove/ Replace, AI product Background, etc., tools. If you&#8217;re new to an intermediate-level photo editor, try the image manipulators directly from the splash screen rather than the Edit canvas. When you choose a tool from the launcher and upload the target photograph, the tool t akes you directly to the appropriate editing interface and optimizes the input settings at par with the image subject. Moreover, the tool interface will show multiple essential hints to get you started with the editing job. All of these AI and conventional photo editing tools work just fine. I used the AI Background Remove/ Replace tool on the following portrait. Here&#8217;s the quality job done by the tool: ColorDirector 365 ColorDirector 365 introduces precision color grading in your videos edited in PowerDirector. You can shoot a video with a digital camera, iPhone, or video camera. Then, you can apply film effects, like Bleach Bypass, Teal and Orange, Noir, Technicolor, Sepia , etc., color tones to create a Hollywood-like finish. You&#8217;ll find various color grading tools organized in the following categories: Light Effects: If you want to dramatically alter the mood of a scene by manipulating the intensity and quality of light sources you can use the effects in this section. There are eight effects to choose from, like Sparkle Effects , Light Hits , Glow , Bokeh , Lens Flares , etc. Stylized Visual Effects: These effects allow you to produce unique, artistic looks that distinguish your films. Stylized Visual Effects can range from adding comic book aesthetics to simulating a dreamlike or surreal atmosphere. To enhance the emotional impact, use effects like Grain , Glitch , Blur , Vignette , and HDR . Pro Color Tools &amp; Productivity: These are the tools for precise color correction and grading. You can streamline the workflow with features like batch processing and automated color matching. This approach saves time while maintaining the consistency of the project. The tools you can use in this section are Histogram , RGB Parades , Waveform , Green Screen Maker , AI-Powered Motion Tracking , etc. Cinematic Effects: These effects provide a film-like quality, adding depth and atmosphere to the footage. Such effects often emulate traditional film stocks or incorporate elements, like film grain and lens flares, contributing to a more immersive viewing experience. You can choose from options like Split-Tone , Film Presets and Filters , and Look-up Tables (LUTs) . AudioDirector 365 AudioDirector 365 is a built-in music editing tool that also allows you to record, mix, and restore audio seamlessly. If you don&#8217;t own a robust audio recording and mixing infrastructure, you can rely on this tool to produce studio-grade music at an affordable cost. Its features are divided into the following three categories: Adjust Audio Tools: These sets of tools are useful if you need to change various qualities of recorded music or audio strings. For example, you want to change the voice of the podcast characters to preserve privacy. In this case, you can use the Voice Changer tool. In total, there are 22 adjustment tools. Some of the major ones are: Record Room: A compact user interface with settings for volume, gain, channels, input devices, etc., for high-quality recording. Auto Level: It helps you prevent sudden volume variations with different speakers and harmonize the overall audio quality. Trim Audio: You use this feature to delete unwanted parts of a recording. Ambience Match: This tool extracts the ambient noise from an audio recording project. Later on, you can apply the same on successive recordings. For example, you had previously recorded a podcast by a roaring shoreline. By using this smart tool, you can extract and apply the same noise to other recordings that you created indoors. Restore Audio Tools: At the time of my review, I discovered 15 audio restoration tools in AudioDirector 365, Some major ones are AI Noise Reduction , AI Speech Enhancement , Clipping Removal , Plosive Removal , AI Wind Removal , Noise Gate , and more. Effects: In total, there are 11 effects to choose from. Major ones include Dynamic Range Control , Delay , Reverb , Phaser , Chorus , etc. AudioDirector 365 comes with three major music editing canvases: Edit Clips: The Edit canvas includes all standard tools to edit your music to your heart&#8217;s content. There are 16 editing functionalities to choose from, like Boost, Fades, Trim, Pitch Shifter, Pitch Bender, Boost in Music, Vocal Removal, and more. Mix: From the top tab switch, you can navigate to the Mix module. By default, there are six tracks on the audio mixing canvas. You can add more using the Add track button just above the first track. This is a timeline canvas so you can drag and drop the tracks wherever you want, to create overlayed or non-overlayed effects. You can also use the recording feature on Mix to add a voice-over track to your timeline. Record: This is the built-in recording tool. It allows you to get input audio from multiple sources simultaneously. You can control the quality of the recorded audio at its granular levels, like Sample rate , Bit depth , Channels , etc. It also comes with advanced recording preferences, like Loop recording and Countdown timer . PowerDVD Essential PowerDVD Essential is the native multimedia player of Director Suite 365. It comes in two different layouts: PC Mode: This mode creates an immersive entertainment zone on your PC. It includes some of the standard interface buttons, like Movies , TV Shows , Music , Videos , Photos , etc. The DVD player automatically syncs with the local storage libraries through the Media Library feature. Besides the local storage, you can also stream content from network locations, like Home Network (Ethernet or Wi-Fi LAN), YouTube (personal YouTube sign-in required), and CyberLink Cloud . TV Mode: This mode converts your PC monitor into a super-smart TV. You can watch multimedia content on a virtual TV or stream to VR goggles. The TV Mode features large interface buttons, matching the UI design style of smart TVs. It also has the standard content sources you&#8217;ve seen in the PC Mode . Promeo Essential Promeo Essential is a specialty tool for producing marketing images, videos, social media materials , etc. It&#8217;s also directly linked to various AI APIs for automated content creation with minimal instructions. Furthermore, the tool has access to an extensively large templates directory. These are professionally proven templates that easily attract users and leads. Promeo has two different modules: Image Design: This tool allows you to quickly customize product images according to the standards dictated by e-commerce websites. There are pre-configured templates for popular marketplaces like Shopify, Amazon, eBay, Poshmark, Shopee, TikTok Shop, Etsy, and many more. Marketing Content: This section enables you to produce videos suitable for social media, email marketing, and PPC advertisements. Again, you can start from a built-in template to save time and effort. Here, you&#8217;ll find preconfigured templates for platforms and niches like Instagram Reels, TikTok, YouTube, Twitter, Facebook, LinkedIn, generic posters, generic invitations, etc. Both the Image Design and Marketing Content production tools come with dedicated designing and post-processing canvases . For example, I used the Amazon image designing template to create a product showcase image for a headphone. As soon as I picked the format, the tool guided me in uploading the raw product image. Then, it opened the editing canvas where I could play with advanced design tools, like: Background: Adding a transparent, colorful, or textured background to improve the product&#8217;s focus. AI Background: This tool analyzes the product and automatically creates trending backgrounds that easily go with the product. The autogenerated background styles are available for themes like Classics, Gradient, Winter, Wood, and more. Stickers: Appealing vector art that you can add as a layer on the product image. Text: You can use the Text placeholder tool to add stylized copies and descriptions on the product image. Template Match: This is yet another generative AI tool that creates trending product images with backgrounds. These are generated in compliance with e-commerce website standards so you can upload instantly. last but not least, there&#8217;s a Templates tool for choosing the right starting image or video, upon which you can build on your own. Since the templates library is massive, you must use the right sorting and filtering commands to save time searching. The filtering comes with the following content styles: Content-Type: Motion graphics, videos, and images are the three options you can choose from. Asset Format: You can choose from options like Square, Long, and Wide. Social Platform: Currently there are 5 options, and these are Facebook, TikTok, YouTube, Instagram, and Twitter. Categories: There are 20 categories to choose from, like Gaming, Pets, Photography, Beauty, Fashion, Love, Family, Food, and many more. Exporting Images and Motion Videos A big challenge of video editing and post-processing is compiling the raw project into an acceptable video format. Director Suite 365 makes this easier with the robust content exporting functionality. Certain apps of the suite come with the Export button in the top menu bar, towards the left. It gives you access to a range of features to render and save your motion videos, images, music, etc. Here are the settings you find related to content exporting: Video: In this tab, you can customize various video qualities, like Format, Codec, Resolution, Bit Rate, Frame Rate, and Surround Sound . You can also rename your project here and change the location for the output video directory on your PC or Mac. Audio: Here, you can customize the music quality of the video you&#8217;re exporting. Settings include Format, Codec, Stereo Channel, Surround Sound , etc. Image: The Image tab lets you export your video in the form of individual frames of images that constitute the original multimedia file. The customizable image settings are Format (Animated GIF, Animated PNG, etc.), Resolution, and Frame Rate. YouTube: Using this tab, you can quickly transform a PowerDirector video into a YouTube video in a few clicks. For example, you need to make some quick changes to the Profile, Title, Description, and Visibility. Vimeo: Similar to the YouTube tab, this one lets you transform the output videos into Vimeo-compatible formats. BD or DVD Mastering If you wish to burn multimedia content on a DVD or Blu-ray disc, it&#8217;s a smart move to add an index or table of the content at the beginning. With PowerDirector 365, you no longer need to buy a separate DVD menu-making software. You can use the DVD/BD interface to create cool content menus. The tool also allows you to burn content along with the menu on 2D and 3D discs. For various disc types, you can choose from the following quality settings: Disc Format: Pick any one from options like Blu-ray discs, DVDs, and AVCHD formats. Virtual Discs and ISOs: You can burn multimedia on removable discs and memory sticks using the AVCHD option. Storage Usage: You can choose from different storage limits for DVDs and Blu-ray discs, like 4.7 GB, 8.5 GB, 25 GB, 50 GB, 100 GB, and 128 GB. Video Settings: There are video encoding and resolution customizations, like MPEG-2, H.264, SD, HD, and more. Audio Settings: You can also change the encoding quality of the audio track to 2 Channels, Stereo, 7.1 Channels, 5.1 channels, and more. Content Tab: It allows you to create a list of videos and images. You can move up and down content to change the playback order. Menu Preferences: This menu allows you to use any of the built-in DVD menus or download more from the CyberLink templates server. DVD Menu Mastering: The interface lets you add audio in the background of the menu. You can choose your own audio or use the one that comes with the menu template. Then, you can pick the first video on the list, play titles sequentially, etc. When you&#8217;re done customizing your multimedia DVD menu, you can create a preview to simulate the menu before burning it onto a DVD. If you find the menu design satisfactory, there&#8217;s a Burn in 2D or Burn in 3D button you can use to write content on a disc. Mobile Apps If you mostly create content for TikTok, Facebook, YouTube, Vimeo, etc., using a smartphone, you can use the following mobile apps from Google Play and App Store: Tools Platform Usage PowerDirector Android &amp; iOS Editing videos shot from a smartphone without exporting content to a PC or Mac. PhotoDirector Android &amp; iOS Edit images shot on your smartphone camera to achieve DSLR-like qualities. Promeo Android &amp; iOS It enables you to create engaging reels and stories using your smartphone and directly upload those to YouTube, Facebook, etc. ActionDirector Android only Go Pro video editing tool. I installed and used the PowerDirector Android app on a Moto G72 smartphone. I expected that the tool would perform slowly given the limited hardware resources and SOC capabilities of the device. However, the app truly surprised me with its great performance. It includes almost all of the features you find in the desktop app. For example, you get 1 8 quick tools for niche tasks . Some of the major ones are as outlined below: Cutout Speed Trim Stabilizer Video Effect Tempo Effect Body Effect AI Art Ai Voice Changer AI Anime Video When you open a video editing project, you start with one timeline video. Later, you can insert up to 100 video and audio tracks to customize your content. To add appealing introductions to your shorts, reels, or long-form content, you can use the Intro button to choose from more than 100 intros . These are spread across niches like Birthday , Graduation , Business , Design , Fashion , Family , Gaming , and more. At the bottom of the project board, you&#8217;ll find 17 additional editing tools , like Audio Mixing , FX Layer , Filter , AI Effect , Text to Speech , Edit , Text , and more. When you access any of the above editing tools, more options open up. For example, I needed to add voice-over audio to a reel. I used the Audio tool below and it had three options: Music , Sound FX , and Voice Over . Effect Packs Effect Packs are a set of templates for specific projects. An effect pack will include any or all of the following creative assets: PiP Templates Menu Templates Title Templates Particle Templates. You can directly install these from the CyberLink Application Manager app. Some packs will require a premium subscription for Director Suite 365. Once installed, you&#8217;ll find the related template assets in all the relevant apps, like PowerDirector, PhotoDirector, AudioDirector, etc. At the time of writing, I found 18 different sets of creative asset templates , like: Bloggers Social Media Pack Music Festival Pack Graduation Pack Comics Pack Impressionist AI Style Pack Vol. 2 For example, I installed the Bloggers Social Media Pack effects library in my Director Suite 365 installation package. I could easily load these templates from the PowerDirector 365 Templates menu in the Intro list. There were already other cool effects templates, like Countdown, Birthday, Business, etc. Minimum System Requirements Here are the supported operating systems and devices: Operating System Types Supported OSs Microsoft Windows Win 7, Win 8, Win 8.1, Win 10, and Win 11. For AI features, Win 10 and Win 11 are mandatory. macOS Mojave, Catalina, Big Sur, Monterey, Ventura, and Sonoma Android Android 8.0 and later iOS iOS 13.0 or later and iPadOS 13.0 or later If you&#8217;re running the Director Suite 365 Windows desktop app, here are the minimum system specs it must possess: Processor AMD Phenom® II and later AMD Ryzen™ 3 1200 and newer AMD A8-7670K and above Intel Core™ i-series and newer Haswell (4th generation) processor Xeon and Core branded only Graphics Processor DirectX 11 GPU with at least 128 MB VGA VRAM 2GB VGA VRAM or better to use the AI Plugins NVIDIA GeForce RTX 2060, TITAN RTX, and Quadro RTX 3000 or better for Room Echo Removal and Audio/Video Denoise functionalities System Memory (RAM) A 4 GB minimum is required for the standard services and features To utilize Room Echo Removal and Audio/Video Denoise, 8 GB or more 8 GB or more for AI tools, like AI Style Transfer, AI Body Effects, etc. Internal Storage: 10 GB and more hard disk space. You should use an NVMe SSD instead of an HDD for faster image and multimedia rendering. Director Suite 365 User Interface I must give it to you plainly that the user interface is a bit more complicated than usual video and image editor tools . Firstly, the developers had to include all the essential multimedia modules under a central application. Which, you&#8217;ll rarely find with leading apps, like Adobe Premier, Microsoft Clipchamp , etc. Therefore, there&#8217;s a common launcher or central software, named CyberLink Application Manager . It takes care of account sign-ups, paid license activations, mobile app installations, and desktop app installations. This initial UI also presents the links to effects, tutorials, and blog posts so you can get acquainted with the tool quickly. Now, depending on your subscription, Application Manager will suggest the core tools you need to install. For example, if you&#8217;ve only bought an individual subscription for PowerDirector 365 , the tool will suggest you install this app. If you&#8217;re just trying out the freeware edition, you&#8217;ll get the option to install and check out all the apps in the bundle. Let&#8217;s say you&#8217;d like to use the video editing tool &#8211; PowerDirector Essential. You can open it from Apps &gt; Desktop &gt; PowerDirector Essential . The first time the app launches, you see the splash screen / launcher . Here, you can access the most commonly used sub-features, like AI video editors, trimming tools, background remover, AI speech-to-text for closed captions, and many more. Any tool you access from the launcher will come with a guided tour. It&#8217;ll show you text boxes or instruction bubbles. You must click on that to go to the next instruction. This way, you get an instant idea of the feature you&#8217;re about to use. The app needs more work from the user experience perspective. It should show quick notifications and instructions more often, and not just once when you open one tool for the first time. Also, you must go through multiple tutorials and training videos to learn the features you need for professional video production. Director Suite 365 Customer Support Here are the contact options you can choose from to receive assistance regarding software and billing issues: Contact Support Online Form You can visit the CyberLink Support portal and choose from any of the listed issues for which you need assistance with: Product Usage Purchase &amp; Payment Account &amp; Subscription Download, Install, and Activation Depending on an issue you chose, an online form will open. It&#8217;ll mainly ask you for the following data: Platform Product Software version Contact information Inquiry type, like How-Tos or Errors Product Source Operating System During my review, I submitted the following support request form: As soon as I submitted the ticket, I received a confirmation from the CyberLink email with this subject. Then, I received an email from a support agent in l ess than 4 hours . I tried to contact the support team on a weekend day. Therefore, I can safely say that the support team is up and running throughout the week so they can help you promptly. Phone Support If you&#8217;re in the US or Canada , you can get phone support. The support number is (+1) 888-226-6030 . Phone support is active from Monday to Friday, between: 11:00 AM &#8211; 8:00 PM (CST) 09:00 AM &#8211; 6:00 PM (PST) 12:00 PM &#8211; 9:00 PM (EST) You&#8217;ll be charged long-distance or international calling rates if you&#8217;re calling from outside the US or Canada. My Support Ticket Often, you might accidentally delete support emails received from CyberLink or any other service providers. As a backup, CyberLink stores your conversations in the My Support Ticket portal. You can log in using your subscription email account or any other email from which you initiated the support ticket. Upon successful login, you&#8217;ll see a table of historical tickets. Click on the View details button to the right of the support subject to access the email content and other data related to the event. Director Suite 365 Pricing Here are the paid subscription options you can choose from: Director Suite for Windows: It costs $29.99 per month . Director Suite 365 + Promeo: Subscription option starts at $39.98 per month . Unlimited Premium Stock Content Plan (Add-On): For a monthly fee of $4.99 , you get access to premium content from Getty Images with an unlimited usage license for the whole month. If you buy any of these two primary subscriptions for a year, you can get a 25% flat discount . The rebate is seasonal. All of these purchases renew automatically . According to a statement by CyberLink, they might auto-renew your subscription for the next month or year without informing you in advance. So, to avoid back-and-forth conversations with the billing team for a refund, you can visit The CyberLink Member Zone portal and cancel the subscription on time. CyberLink offers a 30-day money-back guarantee for all subscription product purchases. You can&#8217;t get any refund for credit purchases though, if you&#8217;ve used some of the credits. Director Suite 365 Review &#8211; Verdict If you&#8217;re looking for affordable, all-in-one video, audio, and image editing software, Director Suite 365 is a great choice. It offers both traditional and AI-powered editing tools for all sorts of use cases. The pricing is flexible and you also get mobile apps to use the platform on the go. The only nitpick is the interface, which is a bit convoluted. However, that&#8217;s also a reflection of the tool&#8217;s feature richness, so once you get familiar with the layout, you&#8217;ll have one powerful super-app for all your editing needs. Did this Director Suite 365 review help you make up your mind about the software? Share your thoughts in the comments! Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15
https://mspoweruser.com/clickcharts-review/
ClickCharts Review - Is It Good Enough? Skip to content Menu Trending Best PC Cleaner for Windows Top VPN W11 Safe Driver Updaters for Windows News Apps Software Reviews Xbox Samsung Apple About us Affiliate disclosure Contact us Terms of use Privacy policy Follow us Facebook Twitter LinkedIn YouTube Latest news Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) 3 weeks ago Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared 3 weeks ago Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? 3 weeks ago Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand 3 weeks ago Get Weekly Updates ClickCharts Review - Is It Good Enough? Home » Apps Tamal Das Tech Analyst Apps 20 min. read Updated on November 6, 2025 Read this comprehensive ClickCharts review to discover if the tool is suitable for your diagram-making needs. Creating flowchart diagrams for UML, ER, data flow, BPMN, electrical circuits , and more is a complex task if you don&#8217;t have the right tool. Here comes the ClickCharts app, developed by NCH Software. It&#8217;s a creative and technical wireframe drawing tool that uses visual elements like geometric shapes, connectors, text, arrows, images, etc. It&#8217;s available for free download on Windows (all OSes from Win 7 to Win 11), Mac (macOS 10.5 or later), and Android tablets (5.0 and later) devices. I used the tool extensively for a week to compile this ultimate ClickCharts review. Here, you&#8217;ll learn about its best features, user interface, support options, and pricing. Pros Cons Totally free diagramming app for non-commercial use. The free version doesn&#8217;t allow commercial usage. Multiple diagram-stylizing options like arrows, lines, connectors, text boxes, images, and more. Its flowchart template library requires an internet connection. You can modify the connectors to show straight, orthogonal, curved, rounded, etc., designs. You must download a template each time you want to use it because the tool doesn&#8217;t cache the downloaded content. The software works offline if you can create smart diagrams from scratch. Moderate-level learning curve. User-friendly interface. You can&#8217;t edit diagrams and flowcharts if created in another app or the file isn&#8217;t in the CCD format. You can save your flowchart in 19 different formats like PDF, PNG, PSD, JPEG, PCX, PBM, etc. The mobile app is only compatible with tablet devices running Android OS 5.0 or later. The tool requires minimal system resources The mobile version isn&#8217;t yet available for Android smartphones and iOS devices. The Android tablet version offers most of the features you can use on Windows or Mac computers. It lacks sticky note elements. Switching on and off the snapping feature is easier than most of its competitors. You can&#8217;t use the tool for collaborative creation and editing of process flowcharts. You can share a diagram or flowchart online using an in-app emailing interface. Get ClickCharts for free ClickCharts Features Now let&#8217;s dive into the tool&#8217;s features and see how they perform: Flowchart and Diagram Editor Canvas ClickCharts comes with a tab-based diagram designing and editing canvas . You can open more than one design project as tabs. This way, you can multitask on many flowcharts at once, without swapping between multiple interfaces of the diagramming tool. It also reduces the memory usage. The editing canvas contains gridlines as you see in the Microsoft Office Excel app. These gridlines allow you to accurately place symbols and connectors aligning to the space available for printing. There&#8217;s also a millimeter scale ruler to help you understand if you&#8217;re going beyond the print limit or staying within the limit. You can also switch to a Page View mode if you wish to see a preview of the printable area of the diagram. The view automatically adjusts to the page type you&#8217;ve selected in the Page Setup option on the Home tab. The diagramming canvas doesn&#8217;t allow collaborative editing by sharing a link with remote users, unlike Lucidchart. Extensive Collection of Symbols and Connectors ClickCharts offers 26 different groups of symbols and connectors for diagramming and flowchart-making. The best thing is the tool organizes the relevant elements in a group. So, you don&#8217;t have to remember which symbol and connector types go to which diagram. You only need to choose a design option and the app will populate all the allowed components for the wireframe. To choose the right set of symbols and connectors, you simply visit the Home tab and click on the New Blank button to open a clean canvas. By default, the app will choose Flowchart as the selected group of diagram elements. You need to click the Flowchart drop-down menu to find an exhaustive list of symbols and connectors. For example, you can choose from the following major groups: UML Diagram ER Diagram Data Flow Diagram Arrows Organizational Charts Ladder Diagrams Wireframe Electrical/ Wiring Diagram Process Flow Piping and Instrumentation ClickCharts offers a limited set of symbols and connectors collection as compared to a competitor like Lucidchart. In the latter, you can find more than 30 groups of diagram components, some of which are important ones like AWS Architecture 2021, Google Cloud Platform 2021, Android Mockups, Kubernetes, etc. Flowchart Templates Library To make your life easier, the tool offers an extensive library of popular flowcharts you can use. These examples are from various fields, like education, engineering, business process, productivity, time management, and many more. You can find the Templates option in the Home tab on the top menu bar. When I reviewed the tool, I found 21 types of diagrams. Some of the major ones include: Flowcharts: Eight diagrams, like cab booking, credit card payment, hiring process, etc. UML Diagrams: Three wireframes, like UML class diagram, UML activity diagram, etc. Data Flow Diagrams: Three samples, like elections, order processing, etc. Organizational Charts: Three options, like business, high school, etc. Venn Diagrams: Three designs, like marketing, academic, etc. Mind Map Diagrams: Ten diagrams, like career orientation, estate planning, mind map, etc. BPMN Diagrams: Four options, like billing, payroll, invoicing, etc. When you choose a template, the app inserts a functional diagram inside the canvas area. Now, you simply need to edit the text. A drawback of this feature is each time you want to load a template, you must download it. Charts and Graphs The app also lets you create charts and graphs for data visualization . Some of the options you have are as follows: Column graph Bar graph Pie chart Doughnut graph Line graph Scatter plot I found two different ways to plot my own data in the app to create a graph. Firstly, I tried importing a CSV file containing the dataset I wanted to plot in a chart. As long as the organization of your dataset in the CSV file is as shown below, you&#8217;re good to go: If your input CSV file isn&#8217;t in the format above, restructure the data before importing it to ClickCharts. If the imported CSV file contains compatible datasets, the tool will automatically create a column graph. If you find reorganizing the input CSV file a time-consuming task, don&#8217;t worry. You can use the second method to create a chart. In this technique, you first choose a template graph from the left-side navigation panel of ClickCharts. Now, click on the canvas to add the chart. This is a dummy chart. It won&#8217;t contain your graph data. Then, you need to edit the underlying data of the chart to include your own data. For this, you can use the Edit Data button in the Graph tab. You can now change the following to start modifying the dummy graph: Number of categories: Data points you need along the X-axis of the chart. It can be set maximum to 12. Category Label: Rename the data point names along the X-axis according to your own chart data. Number of series: These are the data points plotted along the Y-axis. Again, you can set up to 12 data points here. Series 1 Data: If there&#8217;s just one Y-axis series in your graph data, it&#8217;ll be represented as Series 1 Data. Enter the data point values in the relevant boxes. Series Name: Give a distinctly recognizable name for the Y-axis data series. Color: If you change this color code, the columns or lines on the chart for Series 1 Data will change accordingly. To test the feature, I customized the dummy column graph to plot the monthly sales of fruits in a produce business: Here&#8217;s the personalized chart created by the app: The tool also allows you to convert one data visualization type to another. Simply, right-click on the chart and hover the cursor over the Change Graph Type option on the context menu. Now, you can choose the new chart type from the overflow menu . ClickCharts Snapping Modes Aligning your symbols and connectors with the canvas grids and other objects is often challenging in most diagramming apps. ClickCharts resolved this by introducing the snapping tool. Snapping ensures that the symbols and other objects you place on the canvas align with pre-existing elements as well as with the gridlines. The tool shows the alignment through dotted lines that overlay an object as you place it on the workspace. By default, you can see both the grid and object snapping lines. However, you can disable these features too. For that, you can go to the View tab and click on the options like Grid Snap and Object Snap to toggle Off and toggle On . I usually keep these functions active for fine alignment of all the objects I place in my flowcharts. However, you can disable these functions to get more freedom in placing symbols and connectors. Ruler and Guides You can find the tool ruler at the left and top edges of the canvas view. The unit of the ruler is in millimeters . For example, in the following screenshot, the distance between the two points is 20 mm: For large diagrams, you sometimes need to create guide lines on the document to attach or snap the symbols to. These guide lines also help you to adhere to an aesthetical-looking and organized blueprint. You can add as many of them as you want from the left-side ruler. Simply, click on the ruler to get a two-sided arrow. Now, drag the arrow cursor to the canvas space to see the thin blue-colored guide line. You can move it from left to right and vice versa using the left-click dragging movement. To hide all guide lines, you can press Ctrl + H . To delete them, you can right-click on any of these and choose the Delete all guide lines option. When you save or print the flowchart, the app doesn&#8217;t show the guide lines. Fine Tuning of Object Properties If you wish to customize all symbols and connectors to individual levels, you can use the Edit Properties feature. First, you need to select the element you want to modify, right-click , and choose Edit Properties from the context menu to open the Properties dialog. The dialog menu options will change as you select different components. Find below the properties fine tuning you can perform: Symbols without texts: Fill, Line, and Transform Symbols with texts: Font, Fill, Line, and Transform Text boxes without symbols: Font, Fill, Line, and Transform Connectors: Line and Arrow The changes you can make are as follows: Change the fill color of the symbols Modify the line color, change the line style, add line gradient, etc. Change the font type, color, bold, italics, underline, etc. Modify object or symbol rotation, position, and dimension ClickCharts Auto-Save and Content Recovery If you fail to save an ongoing ClickCharts project due to power failure or PC shutdown issues, you don&#8217;t need to worry. By default, the tool creates an autosave file for each open project . If you save and close a project successfully, the app deletes the autosave file. However, if the app closes abruptly or your PC shuts down, the autosave file stays in the autosave folder. The next time you open the ClickCharts app, it&#8217;ll automatically open all the projects kept in the autosave folder. The autosave file will only be deleted if you successfully save the projects using the File tab or by pressing Ctrl + S keys. You can control the autosave feature from the Options dialog. It&#8217;s available in the File , Home , and Edit tabs. Keyboard Shortcuts I often use the app&#8217;s keyboard shortcuts to draw diagrams faster. These shortcuts are spread around basic movements, diagram elements management, and adding popular elements . There&#8217;s a total of 79 of them For example, you can use the hotkeys below to quickly add flowchart elements. This isn&#8217;t an exhaustive list. Find more shortcut keys on the official Keyboard Shortcuts portal. Fullscreen workspace: Alt + Enter Cancel current operation: Esc Text: T Filling Style: D Straight Connector: Shift + S Straight Yes Connector: Shift + Y (Flowchart must be selected) Electronic Information Connector: Shift + V (VSM Diagram must be selected) Automate Chart Sharing Via Email While reviewing the app, I discovered a great flowchart-sharing feature &#8211; Email Chart . It lets you automatically send a professional email message along with the flowchart as an attachment in PDF or CCD format. The Email Chart option is available in the File tab . However, you must preconfigure this feature before you can use it effectively. These are the settings you can choose from: MAPI Protocol: Use this option if you&#8217;ve got a MAPI email app set up on your computer. SMTP Settings: You can set up an SMTP server using the Email Chart feature to send email automatically in one click. Printing and Sharing Once you&#8217;re done creating your flowchart, it&#8217;s time to get a simple file that you can share. ClickCharts offers digital and offline sharing options. If you need to print the diagram on paper, you can use the Print option. You can find it in the File tab. The primary Print function opens a Print Preview dialog. Here, you can choose from 11 different paper types, like A3, A4, Tabloid, etc. You can also switch between landscape and portrait printing. If you often find diagrams aren&#8217;t printed on a page properly, ClickCharts resolves that by providing the Fit diagram to page option. Now, you can continue printing on paper or virtually in PDF. If you need a PNG or JPEG copy , you can use the Export Image or Save as options. Here, you can change the output file type to your preference to get a shareable copy of the diagram. Mobile Apps ClickCharts also comes for handheld devices like tablets running Android 5.0 and later versions. The mobile app includes most of the features you&#8217;ll find in the desktop version. For example, you can open a template file from the Templates and Examples option on the mobile app. These are online templates and update quicker on an Android tablet than on desktop. Other features available are Edit, Add Elements, Connector, Styles, etc. In a nutshell, the mobile app offers enough functionalities so you can create professional flowcharts on the go. Except for template library updating, the ClickCharts mobile app doesn&#8217;t require an internet connection for flowchart designing, downloading, and saving. When compared with one of its competitors, Lucidchart, ClickCharts lacks a multi-device content syncing function. If you use Lucidchart on a mobile device and create a flowchart, you can access the content from a desktop in real-time. Moreover, Lucidchart is available for all iOS (iOS 13.0 or later) and Android (8.1 and newer) devices, irrespective of the device type, like tablet or smartphone. Contrarily, ClickCharts only supports tablets running the Android Lollipop OS . ClickCharts User Interface I won&#8217;t sugarcoat the fact that diagramming apps come with an exhausting user interface. ClickCharts isn&#8217;t any different. You&#8217;ll need to invest some time in getting used to it. However, the software is clutter-free compared to its competitors like Lucidchart. If you check out the user interface of the latter, you&#8217;ll see options and buttons are everywhere: Lucidchart&#8217;s user interface is cluttered Also, the functional buttons of the Lucidchart app are tiny. Not to mention, most of the buttons only show a visual diagram or icon. It lacks enough expression for the function the icons represent. You won&#8217;t face such an inconvenience with the ClickCharts app though: Firstly, when you run the app, the tool shows a Welcome Screen for a few mostly used options as outlined below: New Diagram: It lets you open a blank grid map where you can draw a flowchart from scratch or open a template and personalize that. Open Diagram: If you&#8217;ve got an existing ClickCharts flowchart file, you can open that using this option. Open Template: If you&#8217;re a beginner-level flowchart maker or just getting started with the app, you should use the template library. Video Tutorials: This option takes you to the video walkthrough portal of the software. Quick Start Guide: It&#8217;ll redirect you to a website where you can find all technical and instructional documents. Now, coming to other major UI elements past the Welcome Screen, there are only eight tabs on the top menu bar. These are as outlined below: File: It&#8217;s for accessing old files, saving current flowcharts, exporting diagrams as a different file, print setup, page setup, sending emails, etc. Home: This tab has the commonly used functions like New Blank, Templates, Open, Save, Text, Font, Connector, Fill, Page Setup, Options, and more. Edit: The functions of this tab will only become active when you create a minimal flowchart. It mainly provides the options to change the diagram elements using Cut, Copy, Copy Text, Paste, Delete, Group, Add Anchor, etc., tools. Connectors: This tab provides all sorts of flowchart connectors you can use in this tool along with their style customization options. View: Using the options in the View tab, like Page View, Grid View, Grid Snap, Auto Connect, etc., you can change how the project space looks. Graph: This tab lets you access all the software features related to chart-making from numerical datasets. You can also customize the series, chart titles, datasets, visuals, etc., to make your charts better than the default styles. Help: This tab shows all the help and support resources you can use to learn the tool or fix any issues. Suite: You&#8217;ll rarely use the functions in this tab. Basically, you can download all other related NCH Software apps from this section. Now, coming to the canvas navigation, it offers intuitive and fast movement actions like: Drag and drop moves: You can click on any item on the diagram and move it on the canvas by dragging the mouse in the target direction. You must keep the element clicked or selected when moving. Add text: Simply double-click inside a shape to add text. Canvas pan: By pressing the Space Bar along with mouse click and drag, you can pan the canvas to the left, right, up, and down. This helps you visualize large and expansive diagrams on a small screen. Zoom in and out: Simply pressing the Ctrl key and scrolling the mouse wheel will enable you to zoom in and out of the canvas. Horizontal scroll: You can press the Shift key and turn the mouse wheel to scroll the canvas left to right or vice versa. Vertical scroll: When you just scroll the mouse wheel, the canvas will go up or down vertically. You don&#8217;t need to remember all these moves, though. You&#8217;ll see instructions at the bottom of the canvas . This is where its competitors lose. For example, Lucidchart also supports some of these movements but doesn&#8217;t guide you. Sometimes, you may feel overwhelmed when looking for a specific function of a diagramming element. To avoid such confusion and distraction, ClickCharts offers a Right-Click Properties option, which brings out a context menu. There, you find advanced options like moving one element behind another or placing it above it, plus undoing, redoing, centralizing, and more. Also, from here, you can access the Edit Properties menu. It shows all possible customizations like Fill , Line , Transform , and more. The Edit Properties dialog will always show all related customizations of an element. It&#8217;ll change if you select another component. So, now you see that the tool&#8217;s user interface is fairly easy. Also, there are enough user-friendly options in place to ensure the UI doesn&#8217;t become a barrier to effective diagramming. ClickCharts Customer Support ClickCharts offers extensive self-help resources. You can use those to resolve diagramming and technical issues. If you go to the Help menu within the app, you&#8217;ll find the following DIY support materials and documentation: Tutorials: It&#8217;ll take you to the Charting Software Videos portal where you can watch YouTube videos explaining the app&#8217;s functionalities. Help: This option will redirect you to a webpage containing technical and user manual documentation for all the features of ClickCharts. Discussion Forum You can access the ClickCharts forum for free. It&#8217;s not mandatory to buy a paid license to use this support resource. You can create a new topic as shown in the screenshot below. You can also describe the issue you&#8217;re facing and attach images if needed. A ClickCharts specialist or user will respond to your query. There&#8217;s no guaranteed time frame by which someone will respond to your question in the forum. I&#8217;ve submitted a forum ticket when reviewing the tool. I didn&#8217;t receive a response for 3 days. ClickCharts Technical Support If you want to get expert assistance from ClickCharts, you can use the Support (headphone) icon in the app&#8217;s Help menu. It&#8217;ll open an online form to enter details like: Your Email Address Confirm Email Address Program &#8211; auto-selected to ClickCharts Have You Downloaded Program Version Operating System Support Question To test if the system works, I submitted the following form: Once you send the form, you&#8217;ll get an acknowledgment as shown below: It&#8217;s been five days and I still haven&#8217;t received a response . You might have better luck in receiving a support response if you buy a paid license from ClickCharts. ClickCharts Pricing Find below a simple pricing table for ClickCharts license purchases: Subscription Model and Costs Features Pro Edition Annual Plan for $60/ year Single installation license; business and commercial usage are allowed. Home Edition Annual Plan for $50/ year Unlimited use for non-commercial purposes. Pro Edition Quarterly Plan for $3.33/ month but billed $9.99/ quarter Pro features with commercial usage. If you buy any of the above subscription plans as a United States resident, you don&#8217;t have to pay anything extra toward sales tax. However, if you buy as a foreign buyer, a sales tax might apply depending on your country&#8217;s sales tax, VAT, GST, etc., rules. I couldn&#8217;t find any refund policy for ClickCharts. So, I suggest downloading the free version, using it for a few projects, and buying a paid license only if you like it. Keep in mind that all subscriptions are subject to auto-renewal . Usually, you&#8217;ll have to submit a support ticket to cancel the subscription if you don&#8217;t want to continue the next billing cycle. But as we discussed, NCH Software&#8217;s support team isn&#8217;t the most reliable. If you don&#8217;t get an answer I suggest you remove your payment method from the website. ClickCharts Review &#8211; Verdict I&#8217;d vouch for the ClickCharts diagramming app if you need it for home and school use. You can get it for free and use it on as many devices as you&#8217;ve got. It&#8217;s simple, easy to learn, and comes with a lot of templates you can use for free. I&#8217;ll suggest you go for it for business or agency use only if you can compromise on the following features: Collaborative online editing Access control Version control Online sharing via URLs Expansive templates and symbols library Enterprise-grade encryption for online usage Whether you use it in an individual or business capacity, customer support may be unreliable. So, you must be prepared for self-service troubleshooting or waiting a long while for a reply. So, did this ClickCharts review help you make a decision? Let me know in the comments! Tamal Das Tech Analyst Seasoned blogger &amp; software reviewer with publications from MakeUseOf, AddictiveTips &amp; AppleToolBox. He tests everything before writing about it. Readers help support MSpoweruser. We may get a commission if you buy through our links. Read our disclosure page to find out how can you help MSPoweruser sustain the editorial team Read more Improve this guide Search the topic... User forum 0 messages Sort by: Latest Oldest Most Votes Leave a Reply Cancel reply Comment * Name * Email * Commenting as . Not you? Save information for future comments Comment &#916; Search the topic... Discover more Logo Maker Showdown: Design.com vs Wix Logo Maker (Full Comparison 2026) Design.com AI Logo Generator vs Tailor Brands: Accuracy, Styles &amp; Pricing Compared Design.com Logo Maker vs Looka: Which Generates Better Logos with AI? Best AI Logo Generators in 2026: Top Tools to Create a Professional Brand &lsaquo;&nbsp; Back &times; Was this page helpful? Let us know if you managed to solve your tech problem reading this article. We’re happy to hear that! You can subscribe to our newsletter to stay up to date with the latest news and best deals! Do you have a suggestion? We know how frustrating could be to look for an universal solution. If you have an error which is not present in the article, or if you know a better solution , please help us to improve this guide. Name * Email * Suggestion type * The article didn’t fix my problem I have a better solution The solutions are wrong Description * I want to be credited if my feedback will be used in the article. &#916; Follow us Facebook Twitter LinkedIn YouTube --> Col 1 AI Developers Enterprise Marketing Security Col 2 Software Microsoft Android Google Office Col 3 Hardware Deals Rumors Accessories Playstation Col 4 How-To Reviews Browsers Social Media Mixed Reality Terms of use Privacy policy Contact us
2026-01-13T09:30:15