Watching TV and Working on a Single Screen With Samsung’s Do-It-All Smart Monitor
-
Similar Topics
-
By Samsung Newsroom
Samsung Electronics today announced that approximately 34 models across its 2026 TV and soundbar lineup have received Product Carbon Reduction and Product Carbon Footprint certifications from TÜV Rheinland, a globally recognized certification organization based in Germany. The achievement reflects Samsung’s continued efforts to reduce carbon emissions across its premium product lineup.
“As a global leader in premium displays and audio, Samsung sees sustainability as an essential part of innovation,” said Taeyong Son, Executive Vice President of Visual Display (VD) Business at Samsung Electronics. “We remain committed to reducing carbon emissions across our products, so consumers do not have to choose between cutting-edge technology and a more responsible product experience.”
Samsung received Product Carbon Reduction certification for 14 premium display and audio models, including its 2026 OLED TVs, The Frame Pro and its flagship HW-Q990H soundbar.1 An additional 20 products, including Micro RGB and Mini LED TVs, earned Product Carbon Footprint certification.2
TÜV Rheinland grants Product Carbon Footprint certification to products that meet international standards for evaluating greenhouse gas emissions across the full product life cycle, including manufacturing, transportation, use and disposal.
Product Carbon Reduction certification, on the other hand, is granted to products that have already received Product Carbon Footprint certification and further demonstrate a measurable reduction in carbon emissions compared with their predecessors. Notably, the HW-Q990H earned both certifications, extending Samsung’s sustainability efforts beyond TVs.
In 2021, Samsung’s Neo QLED became the first TV with 4K resolution or higher to receive Product Carbon Reduction certification. In the six years since, the company has continued to expand its portfolio of certified products across QLED, OLED, Lifestyle TVs, monitors and signage.
These efforts also reflect Samsung’s broader leadership in premium display and audio categories, where it has led the global TV market for 20 years3 and remained the No. 1 global soundbar brand for 12 years.4
For more information on Samsung’s 2026 TV lineup, please visit www.samsung.com.
14 Product Carbon Reduction-certified models include OLED (S90H, S85H 55’’, 65’’, 77’’, 83’’), The Frame Pro (LS03HW 65”, 75”, 85”) and soundbar (HW-Q990H model). ︎ 20 Product Carbon Footprint-certified models include Micro RGB (R95H 65’’, 75’’, 85’’, R85H 55”, 65”, 75”, 85”, 100’’), OLED (S95H 55’’, 65’’, 77’’, 83’’, S85H 48’’), Mini LED (M70H) and The Frame Pro (LS03HW 55’’). ︎ Omdia Q4 2025 Public Display Report, by unit sales. ︎ FutureSource Consulting, 2025. ︎ View the full article
-
By Samsung Newsroom
Samsung Wallet provides an e-wallet service to its customers through wallet cards, as well as offering features designed to enhance user engagement and drive business growth for partners. Sending push notifications to users is such a feature. Partners can send push notifications to users' wallet cards directly, using pre-approved message templates.
These notifications can be used to send promotional messages or alert users about important updates. This article demonstrates a complete implementation of the Send Notification API.
In the example scenario, we send a notification to a user's wallet card from a partner's server using this API.
System requirements
The Notification API has the following prerequisites:
Complete the onboarding procedure to obtain the required security certificates if you are new to Samsung Wallet.
Now create your wallet card. Follow the Step 1 - Create Wallet Card Template section of the documentation.
Create your notification template and request for approval. Follow the Notification Workflow Overview to complete this step. Remember to check the template to detect prohibited content. No additional approval is required if it passes.
Get permission from Samsung to use the Send Notification API. Reach out to Samsung Developer Support for further support. API fundamentals
As an authorized partner, you can send notifications to the users linked to your card, using the Send Notification API from your server.
Endpoint: The endpoint below processes the notification requests.
URL https://tsapi-card.walletsvc.samsung.com/{cc2}/wltex/cards/{cardId}/notifications/{templateId}/send Headers: Header information is required to ensure secure communication between the Samsung server and the partner server.
Authorization: Bearer token for authentication. Refer to JSON Web Token documentation for specifications. x-smcs-partner-id: Unique partner identifier required for API access. x-request-id: A unique UUID string that identifies each request. Body: A payload including a parameter named ndata possessing a JWT token that contains the relevant data to identify the card user.
See the official documentation for detailed API specifications.
API implementation process
The Send Notification API allows you to send personalized push notifications to users. Download the sample source code and follow the step-by-step process below for a better understanding of the implementation of the API.
Step 1: Managing cryptographic keys
Cryptographic keys are needed for authorization purposes. In this step, use the certificate you obtained during the onboarding process to extract the necessary keys. These keys are needed for JWT token generation.
Extracting the public keys
Extract the public keys from the partner.crt and samsung.crt certificate files.
def getPublicKey(crt_path): try: with open(crt_path, "rb") as f: crt_data = f.read() certificate = x509.load_pem_x509_certificate(crt_data, default_backend()) public_key = certificate.public_key() public_key_pem = public_key.public_bytes( encoding=serialization.Encoding.PEM, format=serialization.PublicFormat.SubjectPublicKeyInfo ) return public_key_pem except Exception as error: print(f"Error reading public key from {crt_path}: {error}") return None Extracting the private key
Extract the private key from the .pem file generated during the onboarding process.
def getPrivateKey(pem_path): try: with open(pem_path, "rb") as data: private_key = serialization.load_pem_private_key( data.read(), password=None, backend=default_backend() ) return private_key except Exception as error: print(f"Error reading private key from {pem_path}: {error}") return None Step 2: Constructing the authorization token
An authorization token is needed to validate the API request. Construct an authorization header with AUTH as the payload content type and include the certificate and partner IDs. Retrieve these IDs from My account > Encryption Management in the Wallet Partner Portal, then build the payload and construct the authorization token.
The following code snippet implements the actions described.
def generateAuthToken(partnerId, certificateId, utcTimestamp, privateKey, cardId, cc2, templateId): auth_header = { "cty": "AUTH", "ver": 3, "certificateId": certificateId, "partnerId": partnerId, "utc": utcTimestamp, "alg": "RS256" } auth_payload = { "API": { "method": "POST", "path": f"/wltex/cards/{cardId}/notifications/{templateId}/send" }, } auth_token = jwt.encode( payload=auth_payload, key=privateKey, algorithm='RS256', headers=auth_header ) return auth_token Step 3: Constructing the notification data token
The request payload requires the ndata parameter, which is a JWT token that contains information about the notification data and the cards’ identifiers. Follow these steps to construct the ndata token.
Defining the notification object
The notification object is a JSON structured data object containing a list of reference IDs and the data. The reference IDs identify the specific cards to send the push notification to. You can use a list of reference IDs to send the push notification to multiple recipients at a time. The data contains the name-value pairs used in the notification template. In our sample notification template, we used two name-value pairs (name and insert_end_date).
notifcationObject = { "refIds": [ "4afb049c-efef-43ca-8f03-1df55243477c" ], "data": { "name": "Premium", "insert_end_date": "12/12/2026" } } Constructing the notification data JWT token
Next, construct the JWT token for notification data (ndata). You can get more information about the JWT format in the "Card Data Token" section of this documentation.
def generateCDataToken(partnerId, samsungPublicKey, partnerPrivateKey, certificateId, utcTimestamp, data): jwe_header = { "alg": "RSA1_5", "enc": "A128GCM" } jwe_token = jwe.encrypt( data, samsungPublicKey, encryption=jwe_header["enc"], algorithm=jwe_header["alg"] ) print(f"jwe_token: \n{jwe_token}\n") jws_header = { "alg": "RS256", "cty": "NOTIFICATION", "ver": 3, "certificateId": certificateId, "partnerId": partnerId, "utc": utcTimestamp, } jws_token = jws.sign( jwe_token, key=partnerPrivateKey, algorithm='RS256', headers=jws_header ) print(f"jws_token: \n{jws_token}\n") return jws_token Step 4: Building and executing the POST request
Construct the HTTP POST request to send the push notification using the following code structure.
# --- Prepare JSON body (Python dictionary) --- payload = { "ndata": nData } # --- Build HTTP Request --- headers = { "Authorization": "Bearer " + authToken, "x-smcs-partner-id": partnerId, "x-request-id": requestId, "Content-Type": "application/json" } # --- Execute HTTP Request --- try: response = requests.post(endpoint, json=payload, headers=headers) response.raise_for_status() print("Wallet Card Template Notificatiom: " + json.dumps(response.json())) except requests.exceptions.RequestException as e: print("Failed to notify the Wallet Card user:") print(f"Error: {e}") if response: print("Response body:", response.text) Running the sample application
Once the four steps described above are implemented, open the sample project and do the following:
Update the partner_id, certificate_id, card_id, and template_id values in src/main.py with your actual values. Place your partner.crt, samsung.crt and private_key.pem files in the /cert directory. Install all dependent libraries listed in the requirements.txt file. Run the main script in the terminal. After the script is executed successfully, a push notification is sent to the user's wallet.
Conclusion
Now that you have implemented the Send Notification API sample application successfully, you can implement this API with your server to send customized push notifications.
Additional resources
For more information on this topic, consult the following resources:
Complete source code Official Samsung Wallet API documentation View the full blog at its source
-
By Samsung Newsroom
Samsung TV Plus, Samsung Electronics’ free ad-supported streaming (FAST) service, has surpassed 100 million monthly active users (MAU) worldwide. After reaching 88 million in October 2024, the figure has increased by 12 million in about a year and two months, highlighting how Samsung’s longstanding hardware dominance in the global TV market — maintained for the past 19 years — has evolved into a robust media platform ecosystem.
As the global media market shifts increasingly toward paid subscriptions, Samsung TV Plus provides a unique viewing experience that allows users to access content instantly, without requiring additional sign-ups or payment. Surpassing the milestone of 100 million users underscores the success of this model as an appealing alternative for viewers.
Samsung Newsroom takes a look at the transformative journey of Samsung TV Plus as it evolves into a global media platform amidst the changing landscape of television viewing.
Lost in a Flood of OTTs: Authentic TV Experience Regains Attention
With paid OTT services becoming the norm in today’s media market, the explosion of content has led to viewer fatigue. As subscription fees continue to rise and platforms have become more fragmented, many find themselves overwhelmed by the sheer number of choices, making it increasingly difficult to locate the content they actually want to watch.
In this context, FAST services are gaining recognition as a new viewing method. By merging the straightforwardness of traditional television — where viewers can jump right into content as soon as they turn on their TVs — with the vast selection offered by OTT platforms that allow viewers to choose content tailored to their preferences, FAST services are appealing to viewers worldwide looking for a simpler, hassle-free viewing experience.
The Beginning of Samsung TV Plus: A Viewing Method Faithful to the Basics
Samsung TV Plus has evolved into a prominent FAST service, but it isn’t new. Launched in 2015 — before the concept of FAST even existed — the platform has been delivering free channel services that come pre-installed on Samsung smart TVs. The core feature allows users to enjoy live content simply by turning on their TVs, without the need for separate subscriptions, payments or extra equipment.
In its early days, Samsung TV Plus was often viewed more like the pre-installed free TV channels available in some regions, rather than as a standalone media platform. Recently, however, with American broadcasters flooding into the FAST market, the idea of ad-supported free services has become well-established. Recognizing this shift in the media landscape, Samsung has begun to cultivate Samsung TV Plus as a distinct, independent media platform.
Today, Samsung TV Plus is broadening its content offerings beyond traditional entertainment and dramas, as well as incorporating content enhancement utilizing AI technology. One innovative feature is the “All-in-One AI Integrated Channel,” which revives popular dramas from the 2000s. These classics have been remastered in high definition using AI-driven picture and sound quality enhancements, providing viewers with a fresh take on beloved content while utilizing the existing video assets. Additionally, the platform has bolstered its travel and fitness-focused lifestyle web entertainment content by adding popular creators’ channels like “Pani Bottle” and “Hip Euddeum.”
In efforts to expand its K-content offerings, Samsung TV Plus has partnered with leading Korean media companies to enhance its premium K-content lineup, making it one of the largest K-content providers in the United States. By streaming various live concerts, the platform draws in fans who want to engage with Korean entertainment and culture.
Beyond Hardware: Establishing a Global Media Platform
Currently, Samsung TV Plus boasts around 4,300 channels and 66,000 videos on demand (VOD) across 30 countries — all for free. By partnering with local broadcasters and content creators, the service continues to develop content that meets regional viewing demands, shaping a global FAST ecosystem. Moving beyond being merely a hardware manufacturer, the company is establishing itself as a major media platform.
In Korea, major channels and content typically consumed via terrestrial broadcasts and existing IPTV services can now also be accessed on Samsung TV Plus. Offering live channels and vast content libraries without additional subscriptions or fees, this platform has become a practical alternative for those wishing to reduce their reliance on paid broadcasting services. Users can enjoy an intuitive experience without the hassle of extra equipment or complicated setups and the burden of discovering new content is significantly eased.
Achieving Major Broadcaster-Level Viewership: Solidifying Leadership in the Global FAST Competition
Samsung TV Plus has achieved impressive 100 million monthly viewership numbers, placing it on par with the three major global broadcasting networks. This notable milestone signifies that the service has evolved from being just an additional feature on Samsung TVs into a robust platform that competes alongside leading global media companies.
Samsung is committed to expanding its presence within the global media ecosystem through Samsung TV Plus. The strategy focuses on continuously enhancing the platform’s value by setting standards for enjoyable TV viewing experiences for users — driven by three key factors: instant viewing capabilities without the need for a separate set-top box, AI-based content curation and constantly updated competitive offerings.
“Samsung TV Plus has transformed into a global media platform that seamlessly integrates into the daily lives of viewers worldwide,” said Choi Joon-hun, Head of the TV Plus Group from Visual Display Business at Samsung Electronics. “Moving forward, we will continue to strengthen our distinct competitive edge in the FAST market by diversifying channels and securing premium content.”
Built on its strong hardware leadership, Samsung Electronics is positioning itself as a key player in the global media ecosystem. Samsung TV Plus is ushering in a new, user-centric lifestyle of content consumption, reshaping the way viewers interact with media.
View the full article
-
By Samsung Newsroom
Samsung Electronics today announced that they are working to bring Google Photos to Samsung TVs to give users a seamless way to enjoy the moments that matter most, from trips and hobbies to everyday memories with loved ones — now on an immersive and larger screen. The experience aims to offer families a delightful and meaningful way to rediscover their favorite memories together.1
“Samsung TVs have always brought people together, and bringing Google Photos to the big screen makes that experience even more personal,” said Kevin Lee, Executive Vice President of the Customer Experience Team at the Visual Display (VD) Business of Samsung Electronics. “We’re giving users an intuitive and engaging way to enjoy the stories behind their photos — right from the comfort of their living room.”
A More Meaningful Way To Enjoy Personal Photos
Google Photos makes reliving and sharing special memories easy. With the planned integration, it will seamlessly bring the photos people capture on their phones to Samsung TVs, where they can appear in a larger, cinematic format.
Through the proposed integration, users can explore curated memories on their TVs organized by people, places, and meaningful moments. Google Photos will also expand the suite of photo-driven experiences that integrate with Samsung’s Vision AI Companion (VAC), enriching how memories are highlighted and enjoyed throughout the day.
Samsung wants Google Photos to be deeply woven into the TV experience. Imagine Photos surfacing naturally through Daily+ and Daily Board, ensuring that meaningful memories2 greet users throughout their day in contextual and convenient moments. The setup should be simple — users sign in with their Google Account, and their photo memories instantly appear on the big screen.3
Three Ways To Relive and Rediscover: Memories, Create and Personalized Results
Memories (planned to launch exclusive in early 2026): Shows curated stories based on people, locations, and meaningful moments for the first time on TV, available first and exclusively on Samsung TVs for six months.4 Create with AI (planned to launch later in 2026): Introduces themed templates5 built on Nano Banana, Google DeepMind’s image generation and editing model, featuring playful and fun transformation. Users can also utilize Remix to transform the art style of an image or Photo to Video to bring still moments to life as short videos. Personalized Results (planned to launch later in 2026): Users may view related photos as a slideshow based on topics or contents of memories e.g. ocean, hiking, Paris, etc.
A Seamless Way To Experience Memories on Samsung TV
Samsung and Google Photos want to bring a cinematic gallery experience to the heart of the home, enabling Samsung TV users to browse and relive their most important moments in stunning detail. This integration will transform personal photo libraries into a space where users are invited to explore their journey, create new stories and reminisce over cherished memories with depth and simplicity.
“Google Photos is a home for people’s photos and videos, helping them organize and bring their memories to life,” said Shimrit Ben-Yair, Vice President, Google Photos and Google One. “We’re excited to bring Google Photos to Samsung TVs — helping people enjoy their favorite photos on a larger screen and reconnect with their memories in new ways.”
Features and availability may vary by model and region. ︎ Available on Samsung TV models launched 2026 with a Google Account and backed-up photos/videos. For in market models, experience will be available following the OS update schedule. ︎ Memories must not be turned off in Google Photos settings. ︎ Memories available beginning March 2026; Create and Search available in the second half of 2026. ︎ Select creative AI templates will be available exclusively on Samsung TVs. ︎ View the full article
-
-
By Samsung Newsroom
▲ The Frame displaying “Metamorphosis of Narcissus” by Salvador Dalí
Samsung Electronics today announced the addition of 15 new artworks from Tate to Samsung Art Store. This expansion builds on the platform’s existing partnerships with renowned institutions like the Art Institute of Chicago, the Museum of Modern Art (MoMA), Thyssen-Bornemisza National Museum and many more. By integrating Tate collection, Samsung Art Store continues to bridge the gap between world-class museums and cultural institutions, bringing masterpieces directly into homes.
The new Tate collection includes iconic modern masters such as Henri Matisse, Salvador Dalí, Mark Rothko and Roy Lichtenstein — the first pop art artists to appear on the Art Store — as well as leading contemporary artists like Peter Doig and Beatriz Milhazes.
Among the highlights are some of Tate Modern’s most celebrated works: Roy Lichtenstein’s “Whaam!” Henri Matisse’s “The Snail,” a must-see in the Tate’s permanent collection; and Jackson Pollock’s “Yellow Islands.” The collection also offers a glimpse into the breadth and energy of modern and contemporary art by showcasing British painter Howard Hodgkin, alongside Peter Doig’s dreamlike “Echo Lake” and “Ski Jacket.”
▲ Samsung Neo QLED displaying “Dinner at West Hill (1964-6)” by Howard Hodgkin
With these new additions, Samsung Art Store further expands its mission to democratize access to art, making it possible for anyone to enjoy museum-quality works from home, with ease. By bringing together partners from across the globe — from New York, to Madrid to London — the platform offers a unique opportunity to experience the depth and versatility of modern and contemporary art. And with Tate now joining the lineup, art lovers can enjoy a collection that speaks to both heritage and innovation.
“Samsung Art Store is dedicated to providing people with the opportunity to experience world-class art in the comfort of their living rooms,” said Heeyeong Ahn, Vice President of the Visual Display Business at Samsung Electronics. “By expanding our offerings to pieces from Tate, we are taking another step in supporting the irreplaceable experience of seeing art in person.”
Discover Exclusive Artwork Across Samsung TVs
With Samsung Art Store available across the 2025 Samsung TV lineup — such as its QLED TVs and the award-winning The Frame and The Frame Pro — art from the world’s leading artists, museums and galleries is more accessible than ever.
As Samsung’s most advanced art TV yet, The Frame Pro features an upgraded Neo QLED screen for brighter colors, sharper contrasts and deeper blacks. Its Wireless One Connect Box1 makes installation seamless, enabling users to keep cables out of sight up to 30 feet away so they can truly enjoy the TV’s gallery-worthy picture. Plus, it’s designed with an Anti-Reflection Matte Display that makes art look true-to-life and is fully customizable — from its bezels2 to its size — offering the perfect complement to any décor.
This year, Samsung Art Store also expanded to the Neo QLED 8K, Neo QLED 4K and QLED series, unlocking even more ways for users to enjoy art in their homes.
To learn more, visit https://www.samsung.com/us/televisions-home-theater/tvs/the-frame/digital-art-store/.
1 Wireless One Connect must be connected to the TV wirelessly for full TV functionality. Wireless connection may be affected by the surrounding environment and may not connect when enclosed or blocked by metal (e.g., from inside a metal cabinet) or by other physical objects such as walls. TV and Wireless One Connect require separate power cord connections.
2 Bezels sold separately.
View the full article
-
-
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.